source: MML/trunk/mml/soundquestion.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 11 years ago

Initial import--MML version from SOLEIL@2013

File size: 266 bytes
Line 
1function soundquestion
2%SOUNDQUESTION - Makes a "question" sound
3%
4%  See also soundchord, soundtada, sounderror
5
6
7VersionStr = version;
8if strcmp(VersionStr(1),'4')
9    % No sound
10else
11    [y, fs, bits] = wavread('UtopiaQuestion.wav');
12    sound(y, fs, bits);
13end
14
Note: See TracBrowser for help on using the repository browser.