ILinear Algebra Operations<T, TVector, TMatrix>.Rank Update Method
Performs a rank one update of a matrix.
Definition
Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
void RankUpdate(
int m,
int n,
T alpha,
TVector x,
TVector y,
TMatrix a
)
Parameters
- m Int32
- The number of rows in the matrix a.
- n Int32
- The number of columns in the matrix a.
- alpha T
- The scalar used to multiply the outer product.
- x TVector
- A reference to a one-dimensional array containing the elements of the vector x.
- y TVector
- A reference to a one-dimensional array containing the elements of the vector y.
- a TMatrix
- Reference to the first element in a one-dimensional array that contains the elements of the matrix.
Remarks
This method is similar to the BLAS routine DGER.