Scilab 6.0.0
Ajuda do Scilab >> Dicas de Conversão de Matlab para Scilab > Matlab-Scilab equivalents > P > pow2 (Matlab function)
pow2 (Matlab function)
Base 2 power and scale floating-point numbers
Matlab/Scilab equivalent
Matlab | Scilab |
pow2 |
No equivalent |
Particular cases
- X=pow2(Y)
There is not equivalent function for pow2 in Scilab but, when called with one input argument it can be emulated by: 2^Y
- X=pow2(F,E)
In this case, Matlab pow2() ignores imaginary part of input arguments. An equivalent expression for this use of pow2 is: F.* 2 .^ E(Note that 2 must be preceded and followed by a white space).
Comments
Add a comment:
Please login to comment this page.