Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图绘制耦合 ODE 的解决方案。我使用 ODE15s 求解器解决它们并使用 for 循环传递参数。MATLAB 代码然后返回一组图给我(使用保持)。现在只有一个给定的图适合我的理论。所以,我如何识别对应于的参数(我已经通过 for 循环)我选择的图表(我可以直观地挑选出图表)
只需使用'text'函数标记每个图形附近的参数。有一个非常简单的演示(a是参数):
x=0:100; figure; hold on; for a=1:10 plot(x,a*x); text(100,a*100,sprintf('a=%s',num2str(a))); end
很抱歉没有在这里粘贴图片,因为我的声誉不够。