Elementwise multiplication
Matlab | Scilab |
.* |
.* |
![]() | Expressions like X .*.23 are interpreted in Matlab as X elementwisely multiplied by 0.23, while Scilab computes the Kronecker product of X and 23. To have the same result with Scilab, write X .* .23 or X .* 0.23 instead of X .*.23 |