Matrix(Int32, Int32, Double) Constructor

Creates a matrix with a given number of rows and columns, and its internal array.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+44e7797405725ef3cf24b3ff0eba94ce6c649601
C#
public Matrix(
	int rows,
	int columns,
	double[] values
)

Parameters

rows  Int32
The number of rows.
columns  Int32
The number of columns.
values  Double
Internal storage.

See Also