source: MML/trunk/mml/soundtada.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: 248 bytes
Line 
1function soundtada
2%SOUNDTADA - Makes a "tada" sound
3%
4%  See also soundchord, sounderror, soundquestion
5
6
7VersionStr = version;
8if strcmp(VersionStr(1),'4')
9    % No sound
10else
11    [y, fs, bits] = wavread('Tada.wav');
12    sound(y, fs, bits);
13end
14
Note: See TracBrowser for help on using the repository browser.