LinearAlgebraOperations<T>.Rotate Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Rotate(Int32, ArraySlice<T>, ArraySlice<T>, T, T)

Applies a plane rotation.

Rotate(Int32, ArraySlice<Complex<T>>, ArraySlice<Complex<T>>, T, T)

A plane rotation, where the cos and sin (c and s) are real and the vectors cx and cy are complex.

Rotate(Int32, ArraySlice<T>, ArraySlice<T>, T, T)

Applies a plane rotation.

C#
public abstract void Rotate(
	int n,
	ArraySlice<T> dx,
	ArraySlice<T> dy,
	T c,
	T s
)

Parameters

n  Int32
 
dx  ArraySlice<T>
 
dy  ArraySlice<T>
 
c  T
 
s  T
 

Implements

ILinearAlgebraOperations<T>.Rotate(Int32, ArraySlice<T>, ArraySlice<T>, T, T)

Remarks

Further Details:

            jack dongarra, linpack, 3/11/78.
            modified 12/3/93, array(1) declarations changed to array(*)
            

Authors: Univ. of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver, NAG Ltd.

Date: November 2011

Rotate(Int32, ArraySlice<Complex<T>>, ArraySlice<Complex<T>>, T, T)

A plane rotation, where the cos and sin (c and s) are real and the vectors cx and cy are complex.

C#
public abstract void Rotate(
	int n,
	ArraySlice<Complex<T>> cx,
	ArraySlice<Complex<T>> cy,
	T c,
	T s
)

Parameters

n  Int32
             On entry, N specifies the order of the vectors cx and cy.
             N must be at least zero.
            
cx  ArraySlice<Complex<T>>
            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.
            
             On entry, INCX specifies the increment for the elements of
             CX. INCX must not be zero.
            
cy  ArraySlice<Complex<T>>
            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.
            
             On entry, INCY specifies the increment for the elements of
             CY. INCY must not be zero.
            
c  T
             On entry, C specifies the cosine, cos.
            
s  T
             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

See Also