Hello. Can someone suggest how to enter into the Matlab through the GUI system remote control (or part of it, for example the coefficient expressed in x,y ) and transfer the function to the file.

Tried so

 pod = (get(handles.edit35,'String')); 

Then in the function file, substituted as a global variable.

 function dy = myeq1(~,y) dy=zeros(2,1); global a11 a12 a13 a21 a22 a23 sk pod %if s == 1 dy(1) = a11*y(1) - a12*pod; dy(2) = a21*y(2) - a22*pod; 

It does not work.

pod should be equal to for example x * y (y(1) * y(2)).

Tell me how to be please.

    0