Scilab 6.0.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
empty
([]) empty matrix
Description
[]
denotes the empty matrix. It is uniquely defined
and has 0 row and 0 column, i.e. size([]) =[0,0]
.
The following convenient conventions are made:
[] * A = A * [] = []
[] + A = A + [] = []
[ [], A] = [A, []] = A
Matrix functions return []
or an error message
when there is no obvious answer. Empty linear systems
(syslin
lists) may have several rows or columns.
Examples
See also
- null — deletes a list component or a field of a structure, Mlist, or Tlist
- isempty — check if a variable is an empty matrix or an empty list
- emptystr — zero length string
- brackets — Concatenation. Recipients of an assignment. Results of a function
- operators — scilab operator names
- matrices — Scilab objects, matrices in Scilab
History
Version | Description |
6.0.0 |
|
Report an issue | ||
<< diag | Matrix generation | eye >> |