Adding full figure edit options to an executable?

5 ビュー (過去 30 日間)
matlabuser12
matlabuser12 2015 年 4 月 22 日
編集済み: matlabuser12 2015 年 4 月 24 日
I have a matlab executable which generates a plot in a figure, but the figure only has bare minimum options available (legend, zoom, pan, etc) how do I turn on the full suite of options? I only have file in the tool bar as an option, when I really need the functions under insert, view, edit, tools, desktop, etc.

採用された回答

Sean de Wolski
Sean de Wolski 2015 年 4 月 24 日
Plottools Plotedit etc. aren't supported by Compiler, you'll have to rebuild them yourself if you want the end user to have this functionality.
  1 件のコメント
matlabuser12
matlabuser12 2015 年 4 月 24 日
編集済み: matlabuser12 2015 年 4 月 24 日
That is such a letdown, thanks for the full confirmation though. Also i cannot access that link, becuase of To see documentation for this product, you need to have the product on your license.. WTF mathworks, I can't even read about where you screwed up?

サインインしてコメントする。

その他の回答 (1 件)

Joseph Cheng
Joseph Cheng 2015 年 4 月 22 日
I think something like this would work where lets just say hfig is your figure for plot.
hfig=figure; %or however you get your figure window and structure.
set(hfig,'menubar,'none') %to turn it off
set(hfig,'menubar,'figure') %to turn on the default.
  4 件のコメント
Joseph Cheng
Joseph Cheng 2015 年 4 月 23 日
Looks like you're absolutely correct that there isn't an official way to do this as explained here However that doesn't stop us from trying to get you what you need. What specific items are you looking to use in each menu? You can create your own menus through the use of uimenu() to add in your own callbacks.
matlabuser12
matlabuser12 2015 年 4 月 24 日
I really need the full menu for plot editing. The program I was writing to deploy on other computers was a data processing and plotting program. So the end user must be able to add arrows, axis labels, draw lines etc.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeGraphics Objects についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by