plot of 3 variables
显示 更早的评论
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 个评论
Purushottama Rao
2015-6-24
Do u want to plot two variables against the third variable?
Lincy Elizebeth Jim
2015-6-24
回答(2 个)
Walter Roberson
2015-6-24
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 个评论
Lincy Elizebeth Jim
2015-6-24
Walter Roberson
2015-6-24
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)
类别
在 帮助中心 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!