ManagedLinearAlgebraOperations.ConjugateRankUpdate Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

ConjugateRankUpdate(Int32, Int32, Complex<Double>, ArraySlice<Complex<Double>>, ArraySlice<Complex<Double>>, Array2D<Complex<Double>>)

Performs a rank one update of a matrix.
C#
public override void ConjugateRankUpdate(
	int m,
	int n,
	Complex<double> alpha,
	ArraySlice<Complex<double>> x,
	ArraySlice<Complex<double>> y,
	Array2D<Complex<double>> a
)

Parameters

m  Int32
The number of rows in the matrix a.
n  Int32
The number of columns in the matrix a.
alpha  Complex<Double>
The scalar used to multiply the outer product.
x  ArraySlice<Complex<Double>>
A reference to a one-dimensional array containing the elements of the vector x.
y  ArraySlice<Complex<Double>>
A reference to a one-dimensional array containing the elements of the vector y.
a  Array2D<Complex<Double>>
Reference to the first element in a one-dimensional array that contains the elements of the matrix.

Implements

ILinearAlgebraOperations<T>.ConjugateRankUpdate(Int32, Int32, T, ArraySlice<T>, ArraySlice<T>, Array2D<T>)

See Also