Managed Linear Algebra Operations.Rotate Method
Definition
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Rotate( | |
Rotate( | A plane rotation, where the cos and sin (c and s) are real and the vectors cx and cy are complex. |
Rotate( | A plane rotation, where the cos and sin (c and s) are real and the vectors cx and cy are complex. |
Rotate( | A plane rotation, where the cos and sin (c and s) are real and the vectors cx and cy are complex. |
Rotate( | A plane rotation, where the cos and sin (c and s) are real and the vectors cx and cy are complex. |
Rotate(Int32, Span<Complex<Double>>, Int32, Span<Complex<Double>>, Int32, Double, Double)
A plane rotation, where the cos and sin (c and s) are real and the vectors cx and cy are complex.
public override void Rotate(
int n,
Span<Complex<double>> cx,
int incx,
Span<Complex<double>> cy,
int incy,
double c,
double s
)
Parameters
- n Int32
On entry, N specifies the order of the vectors cx and cy. N must be at least zero.
- cx Span<Complex<Double>>
CX is complex array, dimension at least ( 1 + ( N - 1 )*abs( INCX ) ). Before entry, the incremented array CX must contain the n element vector cx. On exit, CX is overwritten by the updated vector cx.
- incx Int32
On entry, INCX specifies the increment for the elements of CX. INCX must not be zero.
- cy Span<Complex<Double>>
CY is complex array, dimension at least ( 1 + ( N - 1 )*abs( INCY ) ). Before entry, the incremented array CY must contain the n element vector cy. On exit, CY is overwritten by the updated vector cy.
- incy Int32
On entry, INCY specifies the increment for the elements of CY. INCY must not be zero.
- c Double
On entry, C specifies the cosine, cos.
- s Double
On entry, S specifies the sine, sin.
Remarks
jack dongarra, linpack, 3/11/78.
Authors: Univ. of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver, NAG Ltd.
Date: November 2011
Rotate(Int32, Span<Double>, Int32, Span<Double>, Int32, Double, Double)
A plane rotation, where the cos and sin (c and s) are real and the vectors cx and cy are complex.
public override void Rotate(
int n,
Span<double> x,
int incx,
Span<double> y,
int incy,
double c,
double s
)
Parameters
- n Int32
On entry, N specifies the order of the vectors cx and cy. N must be at least zero.
- x Span<Double>
- A span containing the elements of the vector x.
- incx Int32
On entry, INCX specifies the increment for the elements of CX. INCX must not be zero.
- y Span<Double>
- A span containing the elements of the vector y.
- incy Int32
On entry, INCY specifies the increment for the elements of CY. INCY must not be zero.
- c Double
On entry, C specifies the cosine, cos.
- s Double
On entry, S specifies the sine, sin.
Implements
ILinearAlgebraOperations<T>.Rotate(Int32, Span<T>, Int32, Span<T>, Int32, T, T)Remarks
jack dongarra, linpack, 3/11/78.
Authors: Univ. of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver, NAG Ltd.
Date: November 2011