PowerCurve.ValueAt Method

Definition

Namespace: Numerics.NET.Curves.Nonlinear
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) Gets the Y-value of the curve at the specified X-coordinate.
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)

Gets the Y-value of the curve at the specified X-coordinate.
C#
public override double ValueAt(
	double x
)

Parameters

x  Double
A real number (must be positive for real-valued output).

Return Value

Double
The Y-value of the curve at the specified X-coordinate.

See Also