I want to display the toolbar even when the figure is displayed in an exe file.

1 回表示 (過去 30 日間)
文宏
文宏 2023 年 1 月 21 日
回答済み: Image Analyst 2023 年 1 月 21 日
% Button pushed function: plot_line
function plot_lineButtonPushed(app, event)
figure
scatter(app.x_line,app.y_line)
end
Hello!!
Current: Toolbar is displayed as "tool_good.png" when executed in MATLAB
Problem: When converted to exe using the compiler, the toolbar is not displayed as "tool_bad.png".
What I want to do: I want to display the toolbar even when converted to exe.
Can anyone give me some advice!!!

採用された回答

Image Analyst
Image Analyst 2023 年 1 月 21 日
hFig = figure
scatter(app.x_line,app.y_line)
hFig.ToolBar = "figure"
See if that works. If not, call tech support.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInteractive Control and Callbacks についてさらに検索

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by