Linear Algebra Operations.Apply Modified Givens Rotation<T, TStorage> Method
            
            
            Applies a modified Givens rotation.
            
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
    C#
    
 
 
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
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