CADability dotNET
Construct an m-by-n constant matrix.

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

Syntax

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

Parameters

m
Type: System..::..Int32
Number of rows.
n
Type: System..::..Int32
Number of colums.
s
Type: System..::..Double
Fill the matrix with this scalar value.

See Also