|
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 public static bool IsRectangular<T>(
T[][] matrix
)
Public Shared Function IsRectangular(Of T) (
matrix As T()()
) As Boolean
Request Example
View SourceParameters
- matrix
- Type: T
The matrix.
Type Parameters
- T
Return Value
Type:
Booleantrue if the specified matrix is rectangular; otherwise,
false.
See Also