Click or drag to resize

MatrixWrapperStructForTopSpineJaggedArrayT(Int32, Int32) Constructor

Initializes a new instance of the MatrixWrapperStructForLeftSpineJaggedArrayT struct and creates the jagged matrix array. This array is a jagged array structure where the spine array is located at the top of the matrix, and the columns 'are hanging down' from this spine array. Access to elements of the underlying array is done by array[col][row], i.e. with col and row exchanged.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public MatrixWrapperStructForTopSpineJaggedArray(
	int rows,
	int cols
)

Parameters

rows  Int32
The number of rows.
cols  Int32
The number of columns.
Exceptions
ExceptionCondition
ArgumentOutOfRangeException rows - Number of rows has to be >=0 or cols - Number of cols has to be >=0
See Also