Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

Help regarding functions and variables

1 visualización (últimos 30 días)
Muthu
Muthu el 26 de Sept. de 2012
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
I am creating a GUI and writing a script to simulate the random packing of carbon fibers. So the required output that I would be concerned is the graphic from the GUI itself. I am having problems calling a function that has variable argument outputs and variable argument inputs.This function needs to be called when I click on a pushbutton. Also, I have created a handle that stores the value of the pushbutton. I am having problems accessing the data in this handle like the value,string etc. Any kind of help would be appreciated. For your reference, these are the error messages I get.
Error in samplerandom1>pushbutton1_Callback (line 80)
if strcmp(handles.st,Start)
Error in gui_mainfcn (line 96) feval(varargin{:});
Error in samplerandom1 (line 42) gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)samplerandom1('pushbutton1_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating uicontrol Callback
I would like to know what these errors mean and how could they be solved.
Thanks in advance.

Respuestas (1)

Titus Edelhofer
Titus Edelhofer el 26 de Sept. de 2012
Hi,
it looks as if you want to compare the string value? In this case you need to retrieve it first, so
if strcmp(get(handles.st, 'string'), Start)
and in case that you mean the string Start instead of the value of a variable Start:
if strcmp(get(handles.st, 'string'), 'Start')
Titus
  2 comentarios
Muthu
Muthu el 26 de Sept. de 2012
Hi,
could you also help with how to use functions with varargout and varargin? and how to call them when required? Thanks again.
Titus Edelhofer
Titus Edelhofer el 30 de Sept. de 2012
Hi, for this I would take a look at the documentation that describes this much better than I could do this ;-).

La pregunta está cerrada.

Community Treasure Hunt

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

Start Hunting!

Translated by