Operators | and >> |
R = all(M) |
R = all(M, dim) |
R = all(M, 'all') |
a matrix.
a integer value: dimension along it works.
tests over all elements of M.
a logical matrix.
all returns true if all of the elements of a matrix satisfy some condition.
all([33, 22; 11, 0])
all([33, 22; 11, 0], 2)
any.
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET