Copying handle.axes to figure in Matlab GUI
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Elena Martín
il 10 Mag 2019
Commentato: Elena Martín
il 25 Mag 2019
Hi everyone!
I have done a gui where i have set in three different handles.axes a head model. I want to copy in a figure the handle.axes corresponding to the first figure statring from the left. I have done this code:
Figure3 = figure('Visible','on'); % Invisible figure
newAxes = copyobj(handles.axes9,Figure3); %
But, when the axes is copied it keeps the same position and I would like the figure to be in the center of the figure but I cant figure out how to do it. I have attached the result I get. If anyone could help me it would be great!
Thanks in advance! ![ExampleGUI.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/218915/image.png)
![ExampleGUI.png](https://www.mathworks.com/matlabcentral/answers/uploaded_files/218915/image.png)
0 Commenti
Risposta accettata
Pruthvi Muppavarapu
il 13 Mag 2019
Hi Elena,
You could try changing the "Position" Property of the axes in order to center your plot. Feel free to refer to the following document, which defines axes properties in detail:
Mention the position cordinates according to the requirments, i.e. in order to do horizontal centering, the 'left' and 'width' can be set in accordance with the following equation:
2*left + width = 1
Similarly, for the vertical centering, the 'bottom' and 'height' can be set in the same way.
Hope this helps.
Regards,
Pruthvi
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Graphics Object Properties in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!