Click or drag to resize

DenseMatrixOfIndexed(Int32, Int32, IEnumerableTupleInt32, Int32, Complex32) Method

Create a new dense matrix as a copy of the given indexed enumerable. Keys must be provided at most once, zero is assumed if a key is omitted. This new matrix will be independent from the enumerable. A new memory block will be allocated for storing the matrix.

Namespace: Altaxo.Calc.LinearAlgebra.Complex32
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static DenseMatrix OfIndexed(
	int rows,
	int columns,
	IEnumerable<Tuple<int, int, Complex32>> enumerable
)

Parameters

rows  Int32

[Missing <param name="rows"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Complex32.DenseMatrix.OfIndexed(System.Int32,System.Int32,System.Collections.Generic.IEnumerable{System.Tuple{System.Int32,System.Int32,Altaxo.Calc.Complex32}})"]

columns  Int32

[Missing <param name="columns"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Complex32.DenseMatrix.OfIndexed(System.Int32,System.Int32,System.Collections.Generic.IEnumerable{System.Tuple{System.Int32,System.Int32,Altaxo.Calc.Complex32}})"]

enumerable  IEnumerableTupleInt32, Int32, Complex32

[Missing <param name="enumerable"/> documentation for "M:Altaxo.Calc.LinearAlgebra.Complex32.DenseMatrix.OfIndexed(System.Int32,System.Int32,System.Collections.Generic.IEnumerable{System.Tuple{System.Int32,System.Int32,Altaxo.Calc.Complex32}})"]

Return Value

DenseMatrix

[Missing <returns> documentation for "M:Altaxo.Calc.LinearAlgebra.Complex32.DenseMatrix.OfIndexed(System.Int32,System.Int32,System.Collections.Generic.IEnumerable{System.Tuple{System.Int32,System.Int32,Altaxo.Calc.Complex32}})"]

See Also