Scilab Function
Last update : 23/10/2007

soundsec - generates n sampled seconds of time parameter

Calling Sequence

t=soundsec(n [,rate])

Parameters

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);
   

See Also

playsnd ,   analyze ,