MATLAB: Using checkboxes in GUI to select which functions run

callbackscheckboxesguipushbuttonwavelet transform

I am creating a gui in which I want to have several check boxes to control which wavelets are used for the wavelet transforms of an ecg signal. In otherwords, each checkbox is separate function, but I want a single pushbutton then to set off the functions that are checked. Is there a way to do this so that only the checked check boxes run when the pushbutton is pressed?

Best Answer

At the beginning of the pushbutton function have it do a check for which checkboxes are checked off. then use that data to set different flags either perform or skip over those wavelet transforms.
Related Question