Deployment of a standalone figure editor possible?
1 次查看(过去 30 天)
显示 更早的评论
Is it possible to create / deploy a standalone matlab figure EDITOR? If I use the deploytool with this simple m-file
[in_name, in_path] = uigetfile('*.fig', 'Select MATLAB figure');
if in_name == 0
return
else
h = openfig([in_path in_name], 'new')
end
I get a standalone figure VIEWER which works great.
However if I add this line at the end
showplottool(h, 'propertyeditor')
the created EXE file opens the figure, and then crashes with a "pure virtual function call".
Can anyone please help? Thanks!
0 个评论
回答(1 个)
Jing
2012-12-13
This is because there's limitation and restriction to deploy program in MATLAB, one of which is those functions calling 'Tools that allow run-time manipulation of figures'. So 'showplottool' is not a supported function. You can find the limitation and restrictions of deployment in help document.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Interactive Control and Callbacks 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!