Special.ZernikeRPartialSequence Method

Evaluates a sequence of Zernike polynomials of increasing radial degree and azimuthal frequency.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<double> ZernikeRPartialSequence(
	Func<int, int, int> scheme,
	int length,
	double x
)

Parameters

scheme  Func<Int32, Int32, Int32>
A delegate that maps radial degree and azimuthal frequency to a linear index.
length  Int32
The number of terms to include in the sequence.
x  Double
A real number.

Return Value

Vector<Double>
A vector that contains the first length values of the radial Zernike polynomials ordered according to scheme at x .

Exceptions

ArgumentOutOfRangeException

length is less than zero.

ArgumentNullException

scheme is null.

See Also