summaryrefslogtreecommitdiff
path: root/modules/sound/tests/unit_tests/savewave.tst
blob: 8cd307907f8c6dbd9a48484831cb5d43764e6285 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// =============================================================================
// Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
// Copyright (C) ????-2008 - INRIA
//
//  This file is distributed under the same license as the Scilab package.
// =============================================================================

// At first we create 0.5 seconds of sound parameters.
t=soundsec(0.5);
// Then we generate the sound.
s=sin(440*t)+sin(220*t)/2+sin(880*t)/2;
[nr,nc]=size(t);
s(nc/2:nc)=sin(330*t(nc/2:nc));
savewave(TMPDIR+'/foo.wav',s);