./ (Matlab operator)
Elementwise right division
Matlab/Scilab equivalent
Matlab | Scilab |
./ |
./ |
Expressions like X./.23 are interpreted in Matlab as the elementwise right division of X by 0.23, while Scilab computes the Kronecker right division of X and 23. To have the same result with Scilab, one must write X./ .23 or X./0.23 instead of X./.23. |
Particular cases
Report an issue | ||
<< .* (Matlab operator) | Operators | .' (Matlab operator) >> |