Mostrar comentarios más antiguos
Hello All,
I have a matlab figure consists of two plots in one graph. I would like to split them into two graphs using subplot(). Can anybody tell me how I can do it without having the code? Thanks.
Respuesta aceptada
Más respuestas (1)
Jan
el 30 de Dic. de 2011
You can save the figure as a fig-file and load it again using load, because fig-files are written in the MAT-file format. Then you find all required values in the fields of the imported struct.
data = load('filename.fig', '-mat')
I admit, this is not convenient, but exhaustive.
1 comentario
Bahareh
el 31 de Dic. de 2011
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!