Filter löschen
Filter löschen

I have fixed parameters , and the functions will used it but how write in GUI MATLAB

2 Ansichten (letzte 30 Tage)
%common parameters
f=3.5;
pt=40;
pr=27;
n=6;
ht=5;
hr=0.005;
this is my parametrs , i want if function need one of the can use it direct , how ? by using guide

Akzeptierte Antwort

Ajay Kumar
Ajay Kumar am 13 Nov. 2019
Bearbeitet: Ajay Kumar am 13 Nov. 2019
If you have static parameters which you do not want to change through out the program, you can declare them in OpeningFcn callback of GUI.
Everytime you open the GUI, these parameters are set.
function untitled1_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to untitled1 (see VARARGIN)
handles.f=3.5;
handles.pt=40;
handles.pr=27;
handles.n=6;
handles.ht=5;
handles.hr=0.005;
% Choose default command line output for untitled1
handles.output = hObject;
% Update handles structure
guidata(hObject, handles);
  2 Kommentare
Shahd Altalhi
Shahd Altalhi am 13 Nov. 2019
how to call them in other functions, can you give examle of the syntax ?
Ajay Kumar
Ajay Kumar am 13 Nov. 2019
For calling the variables, you need to get these handles as the parameters for the function.
For example:
function sample_function(hObject, eventdata, handles, ...%some more user defined if you want )
% do something
% you can call your handles variables here directly. for eg: x = handles.f + 1;
end

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by