ParameterizedScalarVariable Constructor (Double, Double, Double, SegmentDefinition) |
Initializes a new instance with a specified initial value.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.SegmentPropagation (in AGI.Foundation.SegmentPropagation.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public ParameterizedScalarVariable(
double initialValue,
double maximumStep,
double perturbation,
SegmentDefinition segment
)
Public Sub New (
initialValue As Double,
maximumStep As Double,
perturbation As Double,
segment As SegmentDefinition
)
public:
ParameterizedScalarVariable(
double initialValue,
double maximumStep,
double perturbation,
SegmentDefinition^ segment
)
new :
initialValue : float *
maximumStep : float *
perturbation : float *
segment : SegmentDefinition -> ParameterizedScalarVariable
Parameters
- initialValue
- Type: SystemDouble
The initial value to use when the Value
is evaluated. - maximumStep
- Type: SystemDouble
The maximum step that this variable should take. - perturbation
- Type: SystemDouble
The perturbation that should be used when finding the
functions derivative with respect to this variable. - segment
- Type: AGI.Foundation.SegmentPropagationSegmentDefinition
The segment that this variable will operate on.
See Also