ILinearAlgebraOperations<T>.CreateGivensRotation Method

Generates the elements for a Givens plane rotation.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
void CreateGivensRotation(
	ref T a,
	ref T b,
	ref T c,
	ref T s
)

Parameters

a  T
The first element of the input vector. On exit, this value is overwritten with the rotated element r.
b  T
The second element of the input vector. On exit, this value is overwritten with the reconstruction value z.
c  T
On exit, this value is overwritten with the first rotation element, the cosine of the rotation angle.
s  T
On exit, this value is overwritten with the second rotation element, the sine of the rotation angle.

See Also