From: Kev on
I have seen some Matlab simulations that opens up a figure file which allow you to generate wave plots by pressing buttons, how would I manage something like that?

(I know its worded badly, so here is a print screen of what I mean: http://img522.imageshack.us/img522/8933/51381457.jpg )
From: Jeremy on
At the command prompt, type 'guide'

This will help you get started with creating a GUI.
From: us on
"Kev " <kevin.shih8877(a)gmail.com> wrote in message <htiams$7rn$1(a)fred.mathworks.com>...
> I have seen some Matlab simulations that opens up a figure file which allow you to generate wave plots by pressing buttons, how would I manage something like that?
>
> (I know its worded badly, so here is a print screen of what I mean: http://img522.imageshack.us/img522/8933/51381457.jpg )

a hint:
- this tool will help you to quickly compile a GUI...
- ...visually, that is...
- ...the real problems will come later...

help guide;

us