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

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

Initial import--MML version from SOLEIL@2013

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