Click or drag to resize

MatrixTStrictlyUpperTriangle(MatrixT) Method

Puts the strictly upper triangle of this matrix into the result matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public virtual void StrictlyUpperTriangle(
	Matrix<T> result
)

Parameters

result  MatrixT
Where to store the lower triangle.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf result is .
ArgumentExceptionIf the result matrix's dimensions are not the same as this matrix.
See Also