Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Button Callback - Matlab Issue
Date: Fri, 23 Oct 2009 14:29:19 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 19
Message-ID: <hbsejv$pme$1@fred.mathworks.com>
References: <hbpqj1$i7o$1@fred.mathworks.com> <hbptbe$3uc$1@fred.mathworks.com> <hbq01l$of$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1256308159 26318 172.30.248.37 (23 Oct 2009 14:29:19 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 23 Oct 2009 14:29:19 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 2028979
Xref: news.mathworks.com comp.soft-sys.matlab:579604


Matt, it didn't work... i am not sure why it is not plotting the graph on my axes in GUI after i press the generate button...



"Matt Fig" <spamanon@yahoo.com> wrote in message <hbq01l$of$1@fred.mathworks.com>...
> Have all three call the same callback:
> 
> function []=radio_callback(hObject,EventData,handles)
> 
> switch hObject
>     case handles.radio1
>         % run case 1
>     case handles.radio2
>         % run case 2
>     case handles.radio3
>         % run case 3
>     otherwise
>         % Whatever
> end