Click or drag to resize

CreateMatrixDenseOfDiagonalVectorT(Int32, Int32, VectorT) Method

Create a new dense matrix with the diagonal as a copy of the given vector. This new matrix will be independent from the vector. A new memory block will be allocated for storing the matrix.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static Matrix<T> DenseOfDiagonalVector<T>(
	int rows,
	int columns,
	Vector<T> diagonal
)
where T : struct, new(), IEquatable<T>, IFormattable

Parameters

rows  Int32

[Missing <param name="rows"/> documentation for "M:Altaxo.Calc.LinearAlgebra.CreateMatrix.DenseOfDiagonalVector``1(System.Int32,System.Int32,Altaxo.Calc.LinearAlgebra.Vector{``0})"]

columns  Int32

[Missing <param name="columns"/> documentation for "M:Altaxo.Calc.LinearAlgebra.CreateMatrix.DenseOfDiagonalVector``1(System.Int32,System.Int32,Altaxo.Calc.LinearAlgebra.Vector{``0})"]

diagonal  VectorT

[Missing <param name="diagonal"/> documentation for "M:Altaxo.Calc.LinearAlgebra.CreateMatrix.DenseOfDiagonalVector``1(System.Int32,System.Int32,Altaxo.Calc.LinearAlgebra.Vector{``0})"]

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Altaxo.Calc.LinearAlgebra.CreateMatrix.DenseOfDiagonalVector``1(System.Int32,System.Int32,Altaxo.Calc.LinearAlgebra.Vector{``0})"]

Return Value

MatrixT

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.CreateMatrix.DenseOfDiagonalVector``1(System.Int32,System.Int32,Altaxo.Calc.LinearAlgebra.Vector{``0})"]

See Also