| MatrixFGetMinor Method |
Gets the minor matrix.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax public MatrixF GetMinor(
int row,
int column
)
Public Function GetMinor (
row As Integer,
column As Integer
) As MatrixF
public:
MatrixF^ GetMinor(
int row,
int column
)
member GetMinor :
row : int *
column : int -> MatrixF
Parameters
- row
- Type: SystemInt32
The row. - column
- Type: SystemInt32
The column.
Return Value
Type:
MatrixFThe minor matrix.
Exceptions Remarks
The minor matrix is built by removing the given row and the given
column.
See Also