Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português do Brasil - 日本語 -
Scilab help >> Sound file handling > soundsec

soundsec

generates n sampled seconds of time parameter

Calling Sequence

t=soundsec(n [,rate])

Arguments

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 nseconds 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 — sound player facility
  • analyze — frequency plot of a sound signal
<< sound Sound file handling wavread >>

Consortium Scilab (DIGITEO)
Scilab Enterprises

Copyright (c) 2011-2012 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:10:01 CEST 2011