mirror of
https://github.com/revarbat/BOSL2.git
synced 2025-08-13 17:34:16 +02:00
Review of is_matrix
This commit is contained in:
@@ -985,10 +985,8 @@ function determinant(M) =
|
|||||||
function is_matrix(A,m,n,square=false) =
|
function is_matrix(A,m,n,square=false) =
|
||||||
is_list(A)
|
is_list(A)
|
||||||
&& (( is_undef(m) && len(A) ) || len(A)==m)
|
&& (( is_undef(m) && len(A) ) || len(A)==m)
|
||||||
&& is_list(A[0])
|
|
||||||
&& (( is_undef(n) && len(A[0]) ) || len(A[0])==n)
|
|
||||||
&& (!square || len(A) == len(A[0]))
|
&& (!square || len(A) == len(A[0]))
|
||||||
&& is_vector(A[0])
|
&& is_vector(A[0],n)
|
||||||
&& is_consistent(A);
|
&& is_consistent(A);
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user