Initializes a new solution pair with the given values.
Namespace:
Meta.Numerics.Functions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public SolutionPair(
double firstSolutionValue,
double firstSolutionDerivative,
double secondSolutionValue,
double secondSolutionDerivative
)
Public Sub New (
firstSolutionValue As Double,
firstSolutionDerivative As Double,
secondSolutionValue As Double,
secondSolutionDerivative As Double
)
public:
SolutionPair(
double firstSolutionValue,
double firstSolutionDerivative,
double secondSolutionValue,
double secondSolutionDerivative
)
new :
firstSolutionValue : float *
firstSolutionDerivative : float *
secondSolutionValue : float *
secondSolutionDerivative : float -> SolutionPair
Parameters
- firstSolutionValue
- Type: SystemDouble
The value of the first solution. - firstSolutionDerivative
- Type: SystemDouble
The derivative of the first solution. - secondSolutionValue
- Type: SystemDouble
The value of the second solution. - secondSolutionDerivative
- Type: SystemDouble
The derivative of the second solution.
See Also