Special.ZernikeZPartialSequence(Func<Int32, Int32, Int32>, Int32, Boolean, Double, Double) 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> ZernikeZPartialSequence(
	Func<int, int, int> scheme,
	int length,
	bool normalize,
	double x,
	double angle
)

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.
normalize  Boolean
Specifies whether the Zernike polynomial should be normalized.
x  Double
A real number that specifies the radial argument.
angle  Double
A real number that specifies the angular argument.

Return Value

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

Exceptions

ArgumentOutOfRangeException

length is less than zero.

ArgumentNullException

scheme is null.

See Also