Managed Linear Algebra Operations Of Single.Create Givens Rotation Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.3
Assembly: Numerics.NET.SinglePrecision (in Numerics.NET.SinglePrecision.dll) Version: 9.0.3
Overload List
Create | Determines a complex Givens rotation. |
Create | Construct givens plane rotation. |
CreateGivensRotation(Complex<Single>, Complex<Single>, Single, Complex<Single>)
Determines a complex Givens rotation.
public override void CreateGivensRotation(
ref Complex<float> ca,
Complex<float> cb,
out float c,
out Complex<float> s
)
Parameters
Remarks
Authors: Univ. of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver, NAG Ltd.
Date: November 2011
CreateGivensRotation(Single, Single, Single, Single)
Construct givens plane rotation.
public override void CreateGivensRotation(
ref float a,
ref float b,
out float c,
out float s
)
Parameters
- a Single
- The first element of the input vector. On exit, this value is overwritten with the rotated element r.
- b Single
- The second element of the input vector. On exit, this value is overwritten with the reconstruction value z.
- c Single
- On exit, this value is overwritten with the first rotation element, the cosine of the rotation angle.
- s Single
- On exit, this value is overwritten with the second rotation element, the sine of the rotation angle.
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