OptimizerStartWithBoundsT Method

Starts Optimization

Definition

Namespace: Metas.UncLib.Optimization
Assembly: Metas.UncLib.Optimization (in Metas.UncLib.Optimization.dll) Version: 2.8.9053.20205
C#
public static T[] StartWithBounds<T>(
	ObjectiveFunction<T> func,
	T[] xStart,
	T[] p,
	double[] bndL,
	double[] bndU,
	double epsx = 0,
	bool covarianceWeighting = true,
	Algorithm algorithm = Algorithm.LevenbergMarquardt
)
where T : Object, IRealNumber<T>

Parameters

func  ObjectiveFunctionT
Objective Function Delegate
xStart  T
x Start Values
p  T
p
bndL  Double
Lower Bounds
bndU  Double
Upper Bounds
epsx  Double  (Optional)
Eps x
covarianceWeighting  Boolean  (Optional)
Covariance Weighting
algorithm  Algorithm  (Optional)
Algorithm

Type Parameters

T
Real Number Type

Return Value

T
x Optimized

See Also