GUI function from Edit
Mostrar comentarios más antiguos
Hello matlab people community
I am so new to use matlab. I try to take some function respect to x, from edit1 which is name of the component, then I push a button , function of plot will see on the axes? I need a code how to call the function from the edit?
I write the codes here
function pushbutton1_Callback(hObject, eventdata, handles)
axes(handles.axes1);
x=0:0.1:10;
handles.a = get(handles.edit1,'String');
plot(x,a);
Thanks!!!
3 comentarios
engineerOfPhysics
el 13 de Mzo. de 2013
Jan
el 13 de Mzo. de 2013
The question is not clear. Therefore bumping is a waste of time only.
What does this mean: "Try to take some function repsect to x"? What is "x" and "some function"? What does "function of plot will see on the axes"? What is the contents of the string obtained from the edit field?
engineerOfPhysics
el 13 de Mzo. de 2013
Respuesta aceptada
Más respuestas (2)
Alessandro
el 13 de Mzo. de 2013
Editada: Alessandro
el 13 de Mzo. de 2013
you got there a string maybe you should first convert it to an array ! Try this simple solution:
handles.a = get(handles.edit1,'String');
tmpa = str2num(handles.a)
plot(x,tmpa);
engineerOfPhysics
el 13 de Mzo. de 2013
Editada: engineerOfPhysics
el 13 de Mzo. de 2013
0 votos
Categorías
Más información sobre Entering Commands en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!