MatrixTDiagonal(VectorT) Method |
Returns the elements of the diagonal in a Vector.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public virtual void Diagonal(
Vector<T> resultingDiagonal
)
Parameters
- resultingDiagonal VectorT
- After return, contains the elements of the diagonal.
Remarks For non-square matrices, the method returns Min(Rows, Columns) elements where
i == j (i is the row index, and j is the column index).
See Also