Version

MinorMatrix(Matrix,Int32,Int32) Method

Returns the (i,j) minor Matrix of x. The (i,j) minor Matrix of x is the result of removing the ith row and jth column of x.
Syntax
'Declaration
 
Public Overloads Shared Function MinorMatrix( _
   ByVal x As Matrix, _
   ByVal i As Integer, _
   ByVal j As Integer _
) As Matrix
public static Matrix MinorMatrix( 
   Matrix x,
   int i,
   int j
)

Parameters

x
A two-dimensional Matrix.
i
A row index.
j
A column index.

Return Value

The (i,j) minor Matrix
Exceptions
ExceptionDescription
System.ArgumentException Occurs if x is not two-dimensional.
System.ArgumentExceptionOccurs if i or j are out of bounds.
System.ArgumentException Occurs if x is empty.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also