フィルターのクリア

GUI Help

1 回表示 (過去 30 日間)
Sharmen
Sharmen 2011 年 3 月 7 日
hi, i created 5 pushbuttons in my GUI figure file, and 1 static text, and i have sound file in wav format for each alphabet, let say button A until button E. If i click on Button A, it should display on static text box as "A" and play the WAV file for Alphabet A. How do put command in GUI create function ? i really need help in these section. It will very helpful it someone could help me out in this..
Thanks in advance

採用された回答

Matt Fig
Matt Fig 2011 年 3 月 7 日
Set the string property of the texbox in the callback for the corresponding pushbutton. For example, in the callback for the pushbutton with label A, do:
H = guidata(gcbo);
set(H.textbox1,'string','A') % Use the correct textbox handle.
  2 件のコメント
Sharmen
Sharmen 2011 年 3 月 8 日
thanks!! i worked!! but how do i play a wav file at the same time.. i know have to use "wavread" command?
thanks!!
Matt Fig
Matt Fig 2011 年 3 月 8 日
Your welcome. To play a wav file, you need to load it with the command:
[Y,K] = wavread(filename);
sound(Y,K)
If you have other types of files to play, you might want to consider searching the FEX for some players:
http://www.mathworks.com/matlabcentral/fileexchange/?term=mp3

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by