From: Usman on
I'm beginner in matlab, need your assistance in fixing errors.

Get this error;

Error in ==> C:\Documents and Settings\Administrator.EXPERIEN-8B778A\Desktop\New Folder\Mstart.m
On line 3 ==> varargout{1} = handles.output;

from this line;

function varargout = New1_OutputFcn(hObject, eventdata, handles)
varargout{1} = handles.output;

Really appreciate for ur help in advance,Thanks
From: Jos (10584) on
"Usman " <petarian_207(a)yahoo.com> wrote in message <hoh8pt$4am$1(a)fred.mathworks.com>...
> I'm beginner in matlab, need your assistance in fixing errors.
>
> Get this error;
>
> Error in ==> C:\Documents and Settings\Administrator.EXPERIEN-8B778A\Desktop\New Folder\Mstart.m
> On line 3 ==> varargout{1} = handles.output;
>
> from this line;
>
> function varargout = New1_OutputFcn(hObject, eventdata, handles)
> varargout{1} = handles.output;
>
> Really appreciate for ur help in advance,Thanks

So tell us which error do you get?

??? Attempt to reference field of non-structure array.

perhaps, or even

??? Undefined function or variable 'handles'.

If so, the error is in your arguments to the function.

hth
Jos
From: us on
"Usman " <petarian_207(a)yahoo.com> wrote in message <hoh8pt$4am$1(a)fred.mathworks.com>...
> I'm beginner in matlab, need your assistance in fixing errors.
>
> Get this error;
>
> Error in ==> C:\Documents and Settings\Administrator.EXPERIEN-8B778A\Desktop\New Folder\Mstart.m
> On line 3 ==> varargout{1} = handles.output;
>
> from this line;
>
> function varargout = New1_OutputFcn(hObject, eventdata, handles)
> varargout{1} = handles.output;
>
> Really appreciate for ur help in advance,Thanks

well... can you show the whole error message...

us