LinearAlgebraOperations.ApplyModifiedGivensRotation<T, TStorage> Method

Applies a modified Givens rotation.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static void ApplyModifiedGivensRotation<T, TStorage>(
	int n,
	TStorage x,
	TStorage y,
	T[] param
)
where TStorage : Object, IStorageSlice<T>

Parameters

n  Int32
The number of elements in the vectors x and y.
x  TStorage
A reference to a one-dimensional array containing the elements of the vector x.
y  TStorage
A reference to a one-dimensional array containing the elements of the vector y.
param  T[]
An array defining the type of transform matrix H used.

Type Parameters

T
TStorage

See Also