How to plot a function with complex variables?
20 次查看(过去 30 天)
显示 更早的评论
Hello guys, how do I plot a function with complex variables? For instance, I want to plot a function shown in attached file for |z|<1.
Thanks!
0 个评论
采纳的回答
Star Strider
2018-6-27
I am not certain from your description what you want to plot.
Try this:
ang = 0:0.1:2*pi;
z = exp(1i*ang);
f = @(z) 1./z;
figure
plot(real(f(z)), imag(f(z)))
axis equal
figure
plot(ang, real(z))
hold on
plot(ang, imag(z))
hold off
grid
The first figure plots the imaginary component as a function of the real component. The second plots both as a function of ‘ang’.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!