help in pushbutton GUI

Hi,
I have three different tones need to be click using pushbutton in GUI. I already create these tones in m file. So, how I want to called these tones in GUI. Anyone can help me?

Antworten (1)

Image Analyst
Image Analyst am 20 Jul. 2014

0 Stimmen

In the callback of each function, use sound() to play the sound you want. First run the m-file that creates the sound variables - it should return them as output variables or else write them to known filenames. You then need to get the sound you want to play in scope, so see the FAQ: http://matlab.wikia.com/wiki/FAQ#How_can_I_share_data_between_callback_functions_in_my_GUI.28s.29.3F

2 Kommentare

mira
mira am 21 Jul. 2014
Hi, Image Analyst,
Thank you for the information. Actually I have three different tones combines in one .wav file. Which means, 3 different tones playing together at a time. And one of these tones need to be clicked and I'm using pushbutton to click the tones. So I will called the .wav file,but how I want to make the matlab understand that I only want to click on one tone only and if I click on two others tones it will display wrong. Hope you understand my question. Can the matlab do that?
I'm new with matlab GUI.
Thank you.
Image Analyst
Image Analyst am 21 Jul. 2014
You need to extract them. If they're simple sine waves, use a notch filter in Fourier space with the fft() function and ifft() function.
If they're more complicated sounds that are blended, then use Independent Components Analysis to solve the Blind Source Separation problem (the cocktail party problem).

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Audio I/O and Waveform Generation finden Sie in Hilfe-Center und File Exchange

Gefragt:

am 20 Jul. 2014

Kommentiert:

am 21 Jul. 2014

Community Treasure Hunt

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

Start Hunting!

Translated by