Polynomial.ValueAt Method

Definition

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

Overload List

ValueAt(Double[]) Gets the Y-values of the curve at the specified X-coordinates.
ValueAt(Double) Evaluates the polynomial for a real argument.
ValueAt(ReadOnlySpan<Double>) Gets the Y-values of the curve at the specified X-coordinates.
ValueAt(Vector<Double>) Gets the Y-values of the curve at the specified X-coordinates.
ValueAt(ReadOnlySpan<Double>, Span<Double>) Gets the Y-values of the curve at the specified X-coordinates.

ValueAt(Double)

Evaluates the polynomial for a real argument.
C#
public override double ValueAt(
	double x
)

Parameters

x  Double
A real number.

Return Value

Double
The value of the polynomial for the specified argument.

See Also