MMatrixGetLength Method

Gets the specified dimension of the matrix: num == 0 denotes rows, any other value of num denotes columns.

Definition

Namespace: SMath.Math.Symbolic
Assembly: SMath.Math.Symbolic (in SMath.Math.Symbolic.dll) Version: 1.73.9126.0
C#
public int GetLength(
	int num
)

Parameters

num  Int32
Index of the matrix dimension: 0 for rows, any other value for columns.

Return Value

Int32
Rows when num == 0, Cols otherwise.

See Also