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 | ||
<< exist (Matlab function) | E | F >> |