CADability dotNET
Construct an m-by-n matrix of zeros.

Namespace: CADability.LinearAlgebra
Assembly: CADability (in CADability.dll) Version: 1.1.4254.24737 (1.1.*)

Syntax

C#
public Matrix(
	int m,
	int n
)
Visual Basic
Public Sub New ( _
	m As Integer, _
	n As Integer _
)
Visual C++
public:
Matrix(
	int m, 
	int n
)

Parameters

m
Type: System..::..Int32
Number of rows.
n
Type: System..::..Int32
Number of colums.

See Also