Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
6.0.2 - English

Change language to:
Français - 日本語 - Português - Русский

Please note that the recommended version of Scilab is 2024.0.0. This page might be outdated.
See the recommended documentation of this function

Scilab Help >> Elementary Functions > Matrix generation > empty

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

s=poly(0,'s');
A = [s, s+1];
A+[], A*[]
A=rand(2,2);
AA=A([],1), size(AA)
svd([])
w=ssrand(2,2,2);
wr=[]*w;
size(wr), w1=ss2tf(wr), size(w1)

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

VersionDescription
6.0.0
  • A+[], []+A and A-[] now return [] instead of A. []-A now returns [] instead of -A.
  • A>[], A>=[], A<[], A<=[], []>A, []>=A, []<A, and []<=A now return [] instead of an error.
Report an issue
<< diag Matrix generation eye >>

Copyright (c) 2022-2023 (Dassault Systèmes)
Copyright (c) 2017-2022 (ESI Group)
Copyright (c) 2011-2017 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Thu Feb 14 14:57:12 CET 2019