Plotting a complex function with function in real and imag part

2 次查看(过去 30 天)
I am abit lost while trying to plot a complex function when it comes to a function that with a function in real and imag part
Let say the f=x+i*y, where f,x,y are functions of w, and i is an imaginary number.
the range of w is
w=0:0.1:50;
I tried to use
plot(w,f)
and matlab told me that either real part/ imag part has been ignored in the graph
and I tried to use
plot(w,real(f),imag(f))
and system shows error...
I am confused how can I plot this equation with defining the w and with the range of w from 0~50... and how can I plot the graph correctly...
I do appreciate your help in advance!

采纳的回答

Mehmed Saad
Mehmed Saad 2020-4-16
figure,plot(w,real(f)) hold on,plot(w,imag(f))
or
figure,plot(w,[real(x);imag(x)])

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Image Segmentation and Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by