Special.Zernike RPartial Sequence Method
Evaluates a sequence of Zernike polynomials of increasing radial degree
and azimuthal frequency.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
A vector that contains the first length values of the radial Zernike polynomials ordered according to scheme at x .
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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
Argument | length is less than zero. |
Argument | scheme is null. |