CADability dotNET
Gets a submatrix.

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

Syntax

C#
public virtual Matrix GetMatrix(
	int i0,
	int i1,
	int j0,
	int j1
)
Visual Basic
Public Overridable Function GetMatrix ( _
	i0 As Integer, _
	i1 As Integer, _
	j0 As Integer, _
	j1 As Integer _
) As Matrix
Visual C++
public:
virtual Matrix^ GetMatrix(
	int i0, 
	int i1, 
	int j0, 
	int j1
)

Parameters

i0
Type: System..::..Int32
Initial row index.
i1
Type: System..::..Int32
Final row index.
j0
Type: System..::..Int32
Initial column index.
j1
Type: System..::..Int32
Final column index.

Return Value

A(i0:i1,j0:j1)

Exceptions

ExceptionCondition
System..::..IndexOutOfRangeExceptionSubmatrix indices

See Also