Scilab 5.3.1
- Aide Scilab
- Algèbre Lineaire
- bdiag
- chfact
- chol
- chsolve
- cmb_lin
- coff
- colcomp
- companion
- cond
- det
- expm
- fullrf
- fullrfk
- givens
- glever
- gspec
- hess
- householder
- inv
- kernel
- linsolve
- lu
- lyap
- nlev
- orth
- pbig
- pinv
- polar
- proj
- qr
- range
- rank
- rcond
- rowcomp
- spec
- sqroot
- squeeze
- sva
- svd
- trace
- aff2ab
- balanc
- classmarkov
- eigenmarkov
- ereduc
- fstair
- genmarkov
- gschur
- im_inv
- kroneck
- lsq
- pencan
- penlaur
- projspec
- psmall
- quaskro
- randpencil
- rankqr
- rowshuff
- rref
- schur
- spaninter
- spanplus
- spantwo
- sylv
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
spanplus
sum of subspaces
Calling Sequence
[X,dim,dima]=spanplus(A,B[,tol])
Arguments
- A, B
two real or complex matrices with equal number of rows
- X
orthogonal or unitary square matrix
- dim, dima
integers, dimension of subspaces
- tol
nonnegative real number
Description
computes a basis X such that:
the first dima
columns of X
span Range(A
)
and the following (dim-dima
) columns make a basis of A+B
relative to A
.
The dim
first columns of X
make a basis for A+B
.
One has the following canonical form for [A,B]
:
[*,*] (dima rows) X'*[A,B]=[0,*] (dim-dima rows) [0,0]
tol
is an optional argument (see function code).
Examples
See Also
Authors
F. D.; ;
<< spaninter | Algèbre Lineaire | spantwo >> |