Click or drag to resize

DiagonalMatrixCreate Method

Create a new diagonal matrix and initialize each diagonal value using the provided init function.

Namespace: Altaxo.Calc.LinearAlgebra.Complex
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static DiagonalMatrix Create(
	int rows,
	int columns,
	Func<int, Complex> init
)

Parameters

rows  Int32

[Missing <param name="rows"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Complex.DiagonalMatrix.Create(System.Int32,System.Int32,System.Func{System.Int32,System.Numerics.Complex})"]

columns  Int32

[Missing <param name="columns"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Complex.DiagonalMatrix.Create(System.Int32,System.Int32,System.Func{System.Int32,System.Numerics.Complex})"]

init  FuncInt32, Complex

[Missing <param name="init"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Complex.DiagonalMatrix.Create(System.Int32,System.Int32,System.Func{System.Int32,System.Numerics.Complex})"]

Return Value

DiagonalMatrix

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Complex.DiagonalMatrix.Create(System.Int32,System.Int32,System.Func{System.Int32,System.Numerics.Complex})"]

See Also