Click or drag to resize

DiagonalMatrixStorageTOfValue Method

Creates a diagonal matrix storage initialized with a constant diagonal value.

Namespace: Altaxo.Calc.LinearAlgebra.Storage
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static DiagonalMatrixStorage<T> OfValue(
	int rows,
	int columns,
	T diagonalValue
)

Parameters

rows  Int32
The number of rows.
columns  Int32
The number of columns.
diagonalValue  T
The value assigned to each diagonal entry.

Return Value

DiagonalMatrixStorageT
The initialized diagonal matrix storage.
See Also