Skip to content
Matthew Daly edited this page Jan 3, 2023 · 4 revisions

Namespace: Verdant

class Matrix

public class Matrix

A Matrix data type.

Navigate

Properties

Property Description
Rows The number of rows in the matrix.
Columns The number of columns in the matrix.
Data The values in the matrix.

Constructors

public Matrix

public Matrix(int r, int c)

Initialize a new Matrix.

Parameter Description
int r The number of rows.
int c The number of columns.
Clone this wiki locally