Linear Algebra Operations.Conjugate Rank Update<T> Method
            
            
            
            
            Performs a rank one update of a matrix.
            
Definition
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
    C#
    
 
 
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public static void ConjugateRankUpdate<T>(
	int m,
	int n,
	Complex<T> alpha,
	ArraySlice<Complex<T>> x,
	ArraySlice<Complex<T>> y,
	Array2D<Complex<T>> a
)
Parameters
- m Int32
 - The number of rows in the matrix a.
 - n Int32
 - The number of columns in the matrix a.
 - alpha Complex<T>
 - The scalar used to multiply the outer product.
 - x ArraySlice<Complex<T>>
 - A reference to a one-dimensional array containing the elements of the vector x.
 - y ArraySlice<Complex<T>>
 - A reference to a one-dimensional array containing the elements of the vector y.
 - a Array2D<Complex<T>>
 - Reference to the first element in a one-dimensional array that contains the elements of the matrix.
 
Type Parameters
- T