plot of 3 variables

3 views (last 30 days)
Lincy Elizebeth Jim
Lincy Elizebeth Jim on 24 Jun 2015
Commented: Walter Roberson on 24 Jun 2015
Hi all
I have
p=0:0.2:1
m=0:2.5:12.5
x=p./m
is it possible to have a plot of x, p, m
kindly guide
thanking in advance
lincy
  2 Comments
Purushottama Rao
Purushottama Rao on 24 Jun 2015
Do u want to plot two variables against the third variable?
Lincy Elizebeth Jim
Lincy Elizebeth Jim on 24 Jun 2015
is it possible to see p,x ,m as 3 separate lines ? for each value of p can i see x v/s m

Sign in to comment.

Answers (2)

Azzi Abdelmalek
Azzi Abdelmalek on 24 Jun 2015
Edited: Azzi Abdelmalek on 24 Jun 2015
plot3(p,m,x)
  1 Comment
Lincy Elizebeth Jim
Lincy Elizebeth Jim on 24 Jun 2015
hi
is it possible to see them as three separate lines in a single plot

Sign in to comment.


Walter Roberson
Walter Roberson on 24 Jun 2015
plot(1:length(p), p, 'r', 1:length(p), m, 'g', 1:length(p), x, 'b')
this would plot p in red, m in green, and x in blue.
  2 Comments
Lincy Elizebeth Jim
Lincy Elizebeth Jim on 24 Jun 2015
is it possible to have a 3 d plot where there are 3 separate axes for p,m and x and the separate plots for p,m and x together
Walter Roberson
Walter Roberson on 24 Jun 2015
What I suspect you need is
p=0:0.2:1
m=0:2.5:12.5
[P, M] = ndgrid(p, m);
X = P ./ M;
surf(p, m, X)

Sign in to comment.

Tags

Community Treasure Hunt

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

Start Hunting!