Click or drag to resize
DigitalRuneMatrixFGetMinor Method
Gets the minor matrix.

Namespace: DigitalRune.Mathematics.Algebra
Assembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax
public MatrixF GetMinor(
	int row,
	int column
)

Parameters

row
Type: SystemInt32
The row.
column
Type: SystemInt32
The column.

Return Value

Type: MatrixF
The minor matrix.
Exceptions
ExceptionCondition
MathematicsException Cannot get the minor matrix of a 1x1 matrix.
ArgumentOutOfRangeExceptionrow or column is out of range.
Remarks
The minor matrix is built by removing the given row and the given column.
See Also