Matlab figure
显示 更早的评论
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.
采纳的回答
更多回答(1 个)
Jan
2011-12-30
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.
类别
在 帮助中心 和 File Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!