OptBoundVariable(Double, Boolean, Double, Double) Constructor |
Initializes a new instance of the OptBoundVariable class.
Namespace: DotNumerics.OptimizationAssembly: DWSIM.MathOps.DotNumerics (in DWSIM.MathOps.DotNumerics.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public OptBoundVariable(
double initialGuess,
bool isFixed,
double lowerBound,
double upperBound
)
Public Sub New (
initialGuess As Double,
isFixed As Boolean,
lowerBound As Double,
upperBound As Double
)
Request Example
View SourceParameters
- initialGuess Double
- The initial guess.
- isFixed Boolean
- Value that indicates if the variable is fixed.
- lowerBound Double
- The lower bound.
- upperBound Double
- The upper bound.
See Also