Click or drag to resize

MatrixRankOneUpdate Method

Performs in-place rank-1 update of this matrix (adds scaled outer product of two vectors).

Namespace:  FinMath.LinearAlgebra
Assembly:  FinMath (in FinMath.dll) Version: 2.4.7-0a995bd0ea1854c2c868ec3f8dae606c5777e170
Syntax
C#
public void RankOneUpdate(
	double scalar,
	Vector u,
	Vector v
)

Parameters

scalar
Type: SystemDouble
The scalar to multiply the outer product by.
u
Type: FinMath.LinearAlgebraVector
The first vector.
v
Type: FinMath.LinearAlgebraVector
The second vector.
See Also