How can i plot the graph of b versus a?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
a=-pi:2*pi/30:pi
b=pi/a^2
1 Kommentar
Rik
am 17 Mai 2018
You should really consider learning the tool before you start using it. One of the many free online Matlab tutorials can be found here.
Antworten (1)
Von Duesenberg
am 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)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!