|   | MatrixIsRectangularT Method (T) | 
        
         
            Determines whether the specified matrix is rectangular.
            
 
    Namespace: 
   Accord.Math
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
 Syntax
Syntaxpublic static bool IsRectangular<T>(
	T[][] matrix
)
Public Shared Function IsRectangular(Of T) ( 
	matrix As T()()
) As Boolean
Parameters
- matrix
- Type: T
 The matrix.
Type Parameters
- T
Return Value
Type: 
Booleantrue if the specified matrix is rectangular; otherwise, 
false.
 See Also
See Also