Click or drag to resize

DiagonalMatrix(Int32, Int32, Single) Constructor

Create a new diagonal matrix with the given number of rows and columns. All diagonal cells of the matrix will be initialized to the provided value, all non-diagonal ones to zero.

Namespace: Altaxo.Calc.LinearAlgebra.Single
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public DiagonalMatrix(
	int rows,
	int columns,
	float diagonalValue
)

Parameters

rows  Int32

[Missing <param name="rows"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Single.DiagonalMatrix.#ctor(System.Int32,System.Int32,System.Single)"]

columns  Int32

[Missing <param name="columns"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Single.DiagonalMatrix.#ctor(System.Int32,System.Int32,System.Single)"]

diagonalValue  Single

[Missing <param name="diagonalValue"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Single.DiagonalMatrix.#ctor(System.Int32,System.Int32,System.Single)"]

Exceptions
ExceptionCondition
ArgumentExceptionIf the row or column count is less than one.
See Also