Deployment of a standalone figure editor possible?

4 次查看(过去 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!

回答(1 个)

Jing
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.

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by