RbfSurface.Evaluate Method

Definition

Namespace: Numerics.NET.Curves.Surfaces
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.1.0

Overload List

Evaluate(Double[]) Evaluates the surface at the specified point.
Evaluate(IReadOnlyList<Double>) Evaluates the surface at the specified point.
Evaluate(ReadOnlySpan<Double>) Evaluates the surface at the specified point.
Evaluate(IReadOnlyList<Vector<Double>>, Span<Double>) Evaluates the surface at multiple points specified by a list of vectors.
Evaluate(ReadOnlySpan<Vector<Double>>, Span<Double>) Evaluates the surface at multiple points specified by a read-only span of vectors.
Evaluate(Int32, ReadOnlySpan2D<Double>, Span<Double>) Evaluates the surface at multiple points stored in column-major layout.

Evaluate(ReadOnlySpan<Double>)

Evaluates the surface at the specified point.
C#
public override double Evaluate(
	ReadOnlySpan<double> point
)

Parameters

point  ReadOnlySpan<Double>
The coordinates of the point.

Return Value

Double
The interpolated value at the point.

Exceptions

ArgumentException The length of point does not equal Dimension.

See Also