Superimposing Graphs with large difference in Y-axis values
3 次查看(过去 30 天)
显示 更早的评论
I have a graph a=exp(-0.2*x).*sin(x), with x in the range x = 0:pi/20:6*pi. I want to superimpose another graph z=exp(3*x).*cos(x) with the same x range to the other graph. I have tried it, the code is pos_combined_code. The graph displayed is pos_combined. It seems the a graph is not displayed. Only the z graph is displayed. I suspect the reason is the y-axis value for z is much bigger than a, and therefore it is impossible to display those 2 graphs together. I have attached graph a when plotted alone(graph a alone.jpg).
Anyone knows how to display these 2 graphs together in this situation? Thanks.
0 个评论
回答(1 个)
Simon Chan
2022-1-14
2 个评论
Kevin Holly
2022-1-14
x = 0:pi/20:6*pi
a=exp(-0.2*x).*sin(x)
z=exp(3*x).*cos(x)
figure
plot(x,a)
figure
plot(x,z)
figure
plot(x,a)
hold on
plot(x,z)
figure
yyaxis left
plot(x,a)
yyaxis right
plot(x,z)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!