Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.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 >> Scilab > Scilab keywords > 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, []] = A inv([]) =[]

det([])=cond([])=rcond([])=1, rank([])=0

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

  • matrices — Scilab object, matrices in Scilab
  • poly — polynomial definition
  • string — conversion to string
  • boolean — Scilab Objects, boolean variables and operators & | ~
  • rational — Scilab objects, rational in Scilab
  • syslin — linear system definition
<< elseif Scilab keywords end >>

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 May 12 11:44:06 CEST 2011