C# 클래스 YAMP.Numerics.GoldenSection

The golden section search is a technique for finding the extremum (minimum or maximum) of a strictly unimodal function by successively narrowing the range of values inside which the extremum is known to exist.
상속: OptimizationBase
파일 보기 프로젝트 열기: FlorianRappl/YAMP

공개 메소드들

메소드 설명
GoldenSection ( double>.Func f, double a, double b, int n ) : System

Creates a new golden section search instance.

메소드 상세

GoldenSection() 공개 메소드

Creates a new golden section search instance.
public GoldenSection ( double>.Func f, double a, double b, int n ) : System
f double>.Func The function to optimize.
a double The start value.
b double The end value.
n int The number of points.
리턴 System