save variables in Matlab GUI

2 ビュー (過去 30 日間)
Huda M
Huda M 2022 年 3 月 9 日
編集済み: Stephen23 2022 年 3 月 10 日
hello;
if I want to save some constant
x=100;
y= 200;
how I save them in the Matlab GUI code as seen below

回答 (1 件)

Rik
Rik 2022 年 3 月 9 日
For general advice and examples for how to create a GUI (and avoid using GUIDE), have look at this thread.
With your current setup you can store them in the guidata:
handles.x=100;
handles.y=200;
guidata(handles.figure,handles)
  10 件のコメント
Huda M
Huda M 2022 年 3 月 10 日
so is it impossible to do it?
Stephen23
Stephen23 2022 年 3 月 10 日
編集済み: Stephen23 2022 年 3 月 10 日
"so is it impossible to do it?"
I doubt that it would be impossible, but it is unlikely to be good data design or good code.
Accessing the property of a class or field of structure would be simpler. Or perhaps a basic array...
"if I want to save some constant"
Where? In the base workspace or in one of the GUI workspaces or somewhere else?

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

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

タグ

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by