Read data from editing text in GUI

14 views (last 30 days)
Hi guys, I need support about reading data from Matlab GUI.
In particular, I've written this code in my GUI but when I'm pushing on PUSHBUTTON1 it gives error Error while evaluating uicontrol Callback Undefined variable "handles" or class "handles.edit2".
The program doesn't read value for variable zeta, whilst the variable interval works.
How could I resolve this?
Thank you for your support.
function pushbutton1_Callback(hObject, eventdata, handles)
interval=str2double(get(handles.edit1,'string'));
t=0:interval:10;
initial_x = 0;
initial_dxdt = 0.1;
x0=[initial_x initial_dxdt];
[t,x]=ode45( @rhs, t, [initial_x initial_dxdt]);
plot(t,x(:,1))
function dxdt=rhs(t,x)
m=1;
k=10;
omega_n=sqrt(k/m);
zeta=str2double(get(handles.edit2,'string'));
F=sin(10*t);
dxdt_1 = x(2);
dxdt_2 = -2*zeta*omega_n*x(2) -(omega_n)^2*x(1) + sin(10*t);
dxdt=[dxdt_1; dxdt_2];

Accepted Answer

Cris LaPierre
Cris LaPierre on 9 Aug 2020
Edited: Cris LaPierre on 9 Aug 2020
Keep in mind variable scope for functions. Look at the inputs to your function rhs
function dxdt=rhs(t,x)
The handles structure is not an input to this function, so it is not accessible inside it. This is what is causing the error in your calculation of zeta.
Try making handles an input to your function, or make the value of edit2 an input to rhs.
  4 Comments
Cris LaPierre
Cris LaPierre on 11 Aug 2020
Edited: Cris LaPierre on 11 Aug 2020
You need to call a function with all its inputs. example, which you pass in as f to adamsbash, has 3 inputs: t,x, and handles.
function f=example(t,x,handles)
However, when you first use it to compute k1, you call it with only two inputs, a and x0. Hence the error message that there are not enough input arguments. You didn't include handles.
k1=feval(f, a, x0)';
Every time you call the function example you need to provide 3 inputs. When calculating k1, that means doing something like this:
k1=feval(f, a, x0,handles)';
Antonio Tricarico
Antonio Tricarico on 12 Aug 2020
It works! Thank you so much for the help. You have been incredibly helpful for me.

Sign in to comment.

More Answers (0)

Categories

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

Community Treasure Hunt

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

Start Hunting!