How can i plot the graph of b versus a?
Afficher commentaires plus anciens
a=-pi:2*pi/30:pi
b=pi/a^2
1 commentaire
Réponses (1)
Von Duesenberg
le 12 Mai 2018
Is this what you had in mind?
a=-pi:2*pi/30:pi;
b=pi./a.^2;
plot(b,a) %or plot(a,b)
Catégories
En savoir plus sur Get Started with MATLAB dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!