save variables in Matlab GUI
显示 更早的评论
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
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 个评论
Rik
2022-3-9
Something like this you mean?
handles.x=a0;
handles.y=a1;
Huda M
2022-3-9
Rik
2022-3-9
I don't see how that is different from the code I showed. If you mean the user typed in the letter x instead of a value, then str2double also wouldn't work. You can of course store a char array in a variable. Is that what you mean?
Rik
2022-3-10
That depends. Is your goal to store it as text? Or do you want to convert it to symbolic variables?
Rik
2022-3-10
Then your actual question isn't about how to store variables in a GUI, but how to match user input text to a variable.
How are you storing those variables? This seems like a design waithing for trouble. It sounds like it will be very easy to break things this way, especially if you are going to make the mistake of using eval to solve this.
Huda M
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?
类别
在 帮助中心 和 File Exchange 中查找有关 Data Type Identification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
