Version

MinorMatrix(BooleanMatrix,Int32,Int32) Method

Returns the (i,j) minor BooleanMatrix of x. The (i,j) minor BooleanMatrix 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 BooleanMatrix, _
   ByVal i As Integer, _
   ByVal j As Integer _
) As BooleanMatrix
public static BooleanMatrix MinorMatrix( 
   BooleanMatrix x,
   int i,
   int j
)

Parameters

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

Return Value

The (i,j) minor BooleanMatrix
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