plot in predesigned figure
3 views (last 30 days)
Show older comments
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!:)
Answers (1)
Jayanti
on 11 Oct 2024
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.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!