Scilab 6.0.0
- Справка Scilab
- Matlab to Scilab Conversion Tips
- Matlab-Scilab equivalents
- E
- echo (Matlab function)
- eig (Matlab function)
- else (Matlab function)
- elseif (Matlab function)
- erf (Matlab function)
- erfc (Matlab function)
- erfcx (Matlab function)
- error (Matlab function)
- etime (Matlab function)
- eval (Matlab function)
- exist (Matlab function)
- exit (Matlab function)
- exp (Matlab function)
- expm (Matlab function)
- eye (Matlab function)
Справка Scilab >> Matlab to Scilab Conversion Tips > Matlab-Scilab equivalents > E > eig (Matlab function)
eig (Matlab function)
Find eigenvalues and eigenvectors
Particular cases
- eig(A)
Scilab equivalent for eig(A) is spec(A). Scilab eigenvector matrix can differ from Matlab one.
- eig(A,'nobalance')
There is no Scilab equivalent for "nobalance" option. See examples.
- eig(A,B,flag)
There is no Scilab equivalent for flag.
Additional Remarks
![]() | If matrix B is nonsingular, the generalized eigenvalues can be computed
as the eigenvalues of the matrix ![]() d=spec(B^-1*A) . |
![]() | If A is a real random square matrix, Scilab equivalent for the Matlab syntax [V,D] = eig(A,'balance')
is [D,V] = bdiag(A+%i*0, 1/%eps) . In this case D consists of complex 1x1 blocks. |
Comments
Add a comment:
Please login to comment this page.