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

2 views (last 30 days)
%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

Accepted Answer

Ajay Kumar
Ajay Kumar on 13 Nov 2019
Edited: Ajay Kumar on 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 Comments
Ajay Kumar
Ajay Kumar on 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

Sign in to comment.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!