LinearAlgebraOperations<T>.CreateGivensRotation Method

Definition

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

Overload List

CreateGivensRotation(Complex<T>, Complex<T>, T, Complex<T>)

Determines a complex Givens rotation.

CreateGivensRotation(T, T, T, T)

Construct givens plane rotation.

CreateGivensRotation(Complex<T>, Complex<T>, T, Complex<T>)

Determines a complex Givens rotation.

C#
public virtual void CreateGivensRotation(
	ref Complex<T> ca,
	Complex<T> cb,
	out T c,
	out Complex<T> s
)

Parameters

ca  Complex<T>
 
cb  Complex<T>
 
c  T
 
s  Complex<T>
 

Remarks

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

Date: November 2011

CreateGivensRotation(T, T, T, T)

Construct givens plane rotation.

C#
public abstract void CreateGivensRotation(
	ref T da,
	ref T db,
	ref T c,
	ref T s
)

Parameters

da  T
 
db  T
 
c  T
 
s  T
 

Implements

ILinearAlgebraOperations<T>.CreateGivensRotation(T, T, T, T)

Remarks

Further Details:

            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