Scilab 6.0.1
- 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)
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this 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.
Examples
Matlab | Scilab |
Report an issue | ||
<< expm (Matlab function) | E | F >> |