plot in predesigned figure
显示 更早的评论
Hello everyone!
I want to plot a small function in a predesigned figure. The script is the attachment called hw and my function which creates my predesigned figure is f_vorlage.
Now as you can see, the programm hw creates my desired figure, but then overwrites it with a clear figure and then draws the sin(x) function in the cleared figure.
How can I fix this?
Thank you so much for the support!:)
1 个评论
Star Strider
2019-5-27
I am not certain what you are doing.
回答(1 个)
Jayanti
2024-10-11
Hi Josefina,
I understand that you want to create a plot on top of the predesigned figure created by “f_vorlage” without overwriting the existing figure.
“hold on” can be used to allow new plots to overlay on the current figure without erasing it. Also to ensure that the plot created by “hw” is correctly placed on the axes set up by “f_vorlage”, return the axes handle as below:
ax = f_vorlage(s);
This handle will allow you to interact with the specific axes created or modified by “f_vorlage”. When plotting data in “hw”, you can use this axis handle to specify exactly on which axes the plot should be displayed by passing handle as first argument to plot function.
I am attaching below code for your reference.
hold on;
plot(ax,x, sin(x));
hold off;
I am also attaching official MathWorks documentation of “hold” function for your reference:
Hope it helps.
类别
在 帮助中心 和 File Exchange 中查找有关 Graphics 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!