LinearAlgebraOperations.ConjugateRankUpdate<T, TStorage, TStorage2D> Method

Performs a rank one update of a matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static void ConjugateRankUpdate<T, TStorage, TStorage2D>(
	int m,
	int n,
	Complex<T> alpha,
	TStorage x,
	TStorage y,
	Array2D<Complex<T>> a
)
where TStorage : Object, IStorageSlice<Complex<T>, TStorage>
where TStorage2D : Object, IStorage2D<Complex<T>, TStorage2D>

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  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.
a  Array2D<Complex<T>>
A span that contains the elements of the matrix.

Type Parameters

T
TStorage
TStorage2D

See Also