Scilab 5.3.3
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
imult
multiplication by i the imaginary unitary
Calling Sequence
y=imult(x)
Arguments
- x
real or complex scalar, vector or matrix
- y
complex scalar, vector or matrix
Description
imult(x)
is a more efficient way to multiply x by
i than y = %i*x, without the problems occuring when x comprises "special"
floating point numbers as %inf and %nan.
Examples
z1 = imult(%inf) z2 = %i * %inf
Authors
B.P.
<< imag | Complex | isreal >> |