Lydos.Matlab

Matrix Constructor 

Creates an unpopulated matrix of the specified size.

[Visual Basic]
Public Sub New( _ 
   ByVal rows As Integer, _ 
   ByVal cols As Integer _ 
)
[C#]
public Matrix(
   int rows,
   int cols
);
[C++]
public: Matrix(
   int rows,
   int cols
);
[JScript]
public function Matrix(
   int rows,
   int cols
);

Parameters

rows
Number of rows.
cols
Number of columns.

See Also

Matrix Class | Lydos.Matlab Namespace