VectorDifferentiator Constructor (Vector, Double, Int32) |
Initializes a new instance.
Namespace:
AGI.Foundation.Geometry
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic VectorDifferentiator(
Vector vector,
double increment,
int derivativeToCompute
)
Public Sub New (
vector As Vector,
increment As Double,
derivativeToCompute As Integer
)
public:
VectorDifferentiator(
Vector^ vector,
double increment,
int derivativeToCompute
)
new :
vector : Vector *
increment : float *
derivativeToCompute : int -> VectorDifferentiator
Parameters
- vector
- Type: AGI.Foundation.Geometry.Vector
The vector to wrap and finite difference. - increment
- Type: System.Double
The increment, in seconds, used to compute the finite difference. - derivativeToCompute
- Type: System.Int32
The derivative to compute, or 0 to specify that the next unavailable derivative should
be computed. See the documentation for DerivativeToCompute for more
information.
See Also