Name
soundsec — generates n sampled seconds of time
parameter
Calling Sequence
t=soundsec(n [,rate])
Parameters
- n
an integer, the number of seconds to generate.
- rate
an integer, the number of samples per second.
Description
generates a vector coding time from 0 to n
seconds at
sampled rate rate
.
Examples
// At first we create 0.5 seconds of sound parameters.
t=soundsec(0.5);
// Then we generate the sound.
s=sin(2*%pi*440*t);
analyze(s,200,600,22050);