Plotting Multiple Curves on the Same Graph
12 次查看(过去 30 天)
显示 更早的评论
I am plotting a graph of radial velocity against varying radius, but there is also a parameter in the velocity expression similar to the Reynolds number which can have various values, so I would like to set the value of the parameter to 0, 1 and 0.2 and to plot three curves on the same graph, what would be the easiest way to do this?
1 个评论
Adam
2019-7-16
doc hold
Set e.g.
hold( hAxes, 'on' )
for your axes with handle hAxes, then you can add as many plots as you like.
Alternatively if you have all the results together in a matrix (assuming they are the same length for each parameter) you can just plot the matrix all in one go using
doc plot
and making sure you have it oriented the right way.
采纳的回答
Star Strider
2019-7-16
It depends on your function and what you want to do:
t = linspace(0, 2*pi);
freq = [1 5 9];
ampl = [1 2 3];
s = bsxfun(@times, ampl(:), sin(freq(:)*t));
figure
plot(t, s)
grid
6 个评论
Star Strider
2019-7-18
As always, my pleasure!
Remember that in my code, ‘bt’ is a function, so it needs to be evaluated in any calculation using it, and that requires that it be supplied with a numeric argument so that it can return a numeric result:
theta = @(R,Kn) (bt(Kn)./(R.^2));
The complete code is now:
bt = @(Kn) -sqrt(pi/2)*(30*Kn.^2 + 180*(1+(1./pi))*Kn.^3)./(20*pi + 135*pi*Kn + 9*(25*pi +18)*Kn.^2 +324*Kn.^3);
theta = @(R,Kn) (bt(Kn)./(R.^2));
Knv = [0, 0.2, 1];
Rv = 1:10;
[Rm,Knm] = meshgrid(Rv,Knv);
figure
plot(Rv, theta(Rm,Knm))
grid
%xlabel('R')
lgdc = sprintfc('K_n = %3.1f', Knv);
legend(lgdc, 'Location','SE')
I tested that to be sure it works. It does.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!