simple plotting in matlab

4 views (last 30 days)
nida
nida on 4 Apr 2014
Commented: Azzi Abdelmalek on 4 Apr 2014
x=1:1:30 h=70 y=h/x
i understand they are unequal in length but how would i plot it dividing 70 by x one at a time to plot

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 4 Apr 2014
Edited: Azzi Abdelmalek on 4 Apr 2014
x=1:1:30
h=70
y=h./x
plot(x,y)
  4 Comments
nida
nida on 4 Apr 2014
Edited: nida on 4 Apr 2014
my question is that keeping x-axis same i want to plot y by dividing h with specific numbers...s.
Azzi Abdelmalek
Azzi Abdelmalek on 4 Apr 2014
x and y must have the same length

Sign in to comment.

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!