Scilab 5.5.2
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
imag
imaginary part
Calling Sequence
[y]=imag(x)
Arguments
- x
a real or complex vector or matrix.
- y
a real vector or matrix.
Description
imag(x)
is the imaginary part of
x
. (See %i
to enter complex
numbers).
Examples
imag([1 %i 2]) imag(1+0*%i) imag(2+3*%i) imag(1+%s) imag(sprand(3,3,0.1))
See Also
- real — real part
Report an issue | ||
<< conj | Complex | imult >> |