Plotting a complex function with function in real and imag part
Show older comments
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!
Accepted Answer
More Answers (0)
Categories
Find more on Image Segmentation and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!