从Matlab中的箱线图检索保存的数据

时间:2019-06-21 01:08:06

标签: matlab

我有一个箱形图,它另存为Matlab中的图形。不幸的是,我没有原始数据。如何使用代码或用户界面检索数据?

1 个答案:

答案 0 :(得分:0)

您可能会更精确地回答问题,但这是带有简单plot的示例。 boxplot应该与之相同。这是所有让斧头孩子的事情。

open myfig.fig; % open your fig file
h = gca; % get the handle of the current axes
hPlot = h.Children; % The children of the axes should be the plot line
XData = hPlot.XData; 
YData = hPlot.YData;