How can i plot the graph of b versus a?

a=-pi:2*pi/30:pi
b=pi/a^2

1 Comment

You should really consider learning the tool before you start using it. One of the many free online Matlab tutorials can be found here.

Sign in to comment.

Answers (1)

Is this what you had in mind?
a=-pi:2*pi/30:pi;
b=pi./a.^2;
plot(b,a) %or plot(a,b)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Asked:

on 12 May 2018

Commented:

Rik
on 17 May 2018

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!