RelaxISPlugin_ResultEvaluatorGetInitialFixedStates Method |
This function can designate which parameters are fixed by default. The returned array should have the same length as the number of parameters.
Namespace: RelaxIS_SDK.PluginsAssembly: RelaxIS SDK (in RelaxIS SDK.dll) Version: 3.0.23.63
Syntax public virtual bool[] GetInitialFixedStates(
double[] XValues,
double[] YValues
)
Public Overridable Function GetInitialFixedStates (
XValues As Double(),
YValues As Double()
) As Boolean()
Dim instance As RelaxISPlugin_ResultEvaluator
Dim XValues As Double()
Dim YValues As Double()
Dim returnValue As Boolean()
returnValue = instance.GetInitialFixedStates(XValues,
YValues)
Parameters
- XValues Double
- Array of double that will contain all X-Values.
- YValues Double
- Array of double that will contain all Y-Values.
Return Value
BooleanAn array with a fixed state for each parameter. False means a free parameter, true means a fixed parameter.
See Also