Scilab Website | Contribute with GitLab | Mailing list archives | ATOMS toolboxes
Scilab Online Help
5.3.0 - Português

Change language to:
English - Français - 日本語 -

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

Manual Scilab >> Scilab > Scilab palavra-chave > empty

empty

([]) matriz vazia

Descrição

[] denota a matriz vazia. É definida de modo único e possui 0 linha e 0 coluna, i.e. size([]) =[0,0]. As seguintes convenções convenientes foram feitas:

[] * A = A * [] = []

[] + A = A + [] = A

[ [], A] = [A, []] = A inv([]) =[]

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

Funções de matrizes retornam [] ou produzem uma mensagem de erro quando não há resposta óbvia. Sistemas lineares vazios (listassyslin) podem ter várias linhas ou colunas.

Exemplos

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)
<< elseif Scilab palavra-chave 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:
Wed Jan 26 16:24:30 CET 2011