Updates a matrix with the scaled conjugate outer product of two vectors.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
public DenseMatrix<T> AddConjugateOuterProductInPlace(
T factor,
Vector<T> vector
)
Public Function AddConjugateOuterProductInPlace (
factor As T,
vector As Vector(Of T)
) As DenseMatrix(Of T)
public:
DenseMatrix<T>^ AddConjugateOuterProductInPlace(
T factor,
Vector<T>^ vector
)
member AddConjugateOuterProductInPlace :
factor : 'T *
vector : Vector<'T> -> DenseMatrix<'T>
Parameters
- factor
- Type: T
The scale factor. - vector
- Type: Extreme.MathematicsVectorT
The vector.
Return Value
Type:
DenseMatrixTA reference to this instance.
The length of vector must equal
the number of rows and columns of this matrix.
This operation is sometimes called vector rank-1 update.
Numerical Libraries
Supported in: 6.0
Reference