How can i plot the graph of b versus a?
4 次查看(过去 30 天)
显示 更早的评论
回答(1 个)
Von Duesenberg
2018-5-12
Is this what you had in mind?
a=-pi:2*pi/30:pi;
b=pi./a.^2;
plot(b,a) %or plot(a,b)
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!