Scilab 6.0.0
- Scilab Help
- 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 Help >> Matlab to Scilab Conversion Tips > Matlab-Scilab equivalents > E > eye (Matlab function)
eye (Matlab function)
Identity matrix
Particular cases
![]() | Note that in Matlab, A can contain complex values (in these cases, only real part of A is taken in account), what Scilab function do not tolerate. |
- B=eye(A)
If A is a scalar, then Matlab returns a A*A identity matrix but in Scilab you get a 1, use eye(A,A) to get the same matrix B. If A is a vector, Scilab and Matlab give the same B. Finally, if A is a matrix, in Scilab, B will be a matrix having the same size as A whereas in Matlab, you get an error message.
Comments
Add a comment:
Please login to comment this page.