Warning: Using only the real component of complex data.

32 Ansichten (letzte 30 Tage)
%¿por que me da este warning?
n=0:5:50;
x= exp(j*pi*n);
stem(x)

Akzeptierte Antwort

Yongjian Feng
Yongjian Feng am 11 Feb. 2022
Bearbeitet: Yongjian Feng am 11 Feb. 2022
j is the imaginary unit here, so x is complex. stem is not used to plot complex numbers, that is why only the real component is used.
Maybe you want to plot the real part and/or the imaginary part?
stem(real(x))
stem(imag(x))

Weitere Antworten (0)

Kategorien

Mehr zu Just for fun finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by