Grid Surface.Evaluate Method
Definition
Namespace: Numerics.NET.Curves.Surfaces
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0
Overload List
| Evaluate(Double[]) | Evaluates the surface at the specified point. |
| Evaluate( | Evaluates the surface at the specified point. |
| Evaluate( | Evaluates the surface at the specified point. |
| Evaluate( | Evaluates the surface at multiple points specified by a list of vectors. |
| Evaluate( | Evaluates the surface at the specified point. |
| Evaluate( | Evaluates the surface at multiple points specified by a read-only span of vectors. |
| Evaluate( | Evaluates the surface at multiple points stored in column-major layout. |
Evaluate(ReadOnlySpan<Double>)
Evaluates the surface at the specified point.
public override sealed double Evaluate(
ReadOnlySpan<double> point
)Parameters
- point ReadOnlySpan<Double>
- A read-only span representing the coordinates of the point.
Return Value
DoubleThe value of the surface at the specified point.
Remarks
The length of point must equal Dimension.
Exceptions
| Argument | The length of point does not equal Dimension. |
Evaluate(ReadOnlySpan<Double>, ExtrapolationMode)
Evaluates the surface at the specified point.
public double Evaluate(
ReadOnlySpan<double> point,
ExtrapolationMode extrapolation
)Parameters
- point ReadOnlySpan<Double>
- A read-only span representing the coordinates of the point.
- extrapolation ExtrapolationMode
- The extrapolation mode to use for out-of-range coordinates.
Return Value
DoubleThe value of the surface at the specified point.
Remarks
The length of point must equal Dimension.
Exceptions
| Argument | The length of point does not equal Dimension. |