我想将* .fig导出到powerpoint /我的演示文稿。我有数据提示(例如,请参见下面的内容),如果您在其中一行上单击/指定数据点并提供更多信息,则可以方便地显示更多数据。
是否可以将图形从Matlab导出到Powerpoint并以交互方式显示这些数据(即使行可单击以显示其他信息)?也许使用Java小程序来模拟窗口?
下面的示例图,欢迎任何务实的解决方法:
figure(); hP = plot(1:10,rand(10,1),1:10,rand(10,1));
nPts = cellfun(@numel, {hP.XData});
hP(1).DataTipTemplate.DataTipRows(end+1) = dataTipTextRow('Name', repmat("Alice",nPts(1),1) );
hP(1).DataTipTemplate.DataTipRows(end+1) = dataTipTextRow('Age', repmat(12, nPts(1),1) );
hP(2).DataTipTemplate.DataTipRows(end+1) = dataTipTextRow('Name', repmat("Bob", nPts(2),1) );
hP(2).DataTipTemplate.DataTipRows(end+1) = dataTipTextRow('Age', repmat(24, nPts(2),1) );
上面here中的示例