3191
|
1 ## Copyright (C) 1995, 1996, 1997 Friedrich Leisch |
3426
|
2 ## |
3922
|
3 ## This file is part of Octave. |
|
4 ## |
|
5 ## Octave is free software; you can redistribute it and/or modify it |
|
6 ## under the terms of the GNU General Public License as published by |
3191
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
3426
|
9 ## |
3922
|
10 ## Octave is distributed in the hope that it will be useful, but |
3191
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
13 ## General Public License for more details. |
|
14 ## |
3191
|
15 ## You should have received a copy of the GNU General Public License |
3922
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
|
17 ## Software Foundation, 59 Temple Place - Suite 330, Boston, MA |
|
18 ## 02111-1307, USA. |
3191
|
19 |
3449
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} sinetone (@var{freq}, @var{rate}, @var{sec}, @var{ampl}) |
|
22 ## Return a sinetone of frequency @var{freq} with length of @var{sec} |
|
23 ## seconds at sampling rate @var{rate} and with amplitude @var{ampl}. |
|
24 ## The arguments @var{freq} and @var{ampl} may be vectors of common size. |
3191
|
25 ## |
3449
|
26 ## Defaults are @var{rate} = 8000, @var{sec} = 1 and @var{ampl} = 64. |
|
27 ## @end deftypefn |
3426
|
28 |
3457
|
29 ## Author: FL <Friedrich.Leisch@ci.tuwien.ac.at> |
|
30 ## Description: Compute a sine tone |
3426
|
31 |
3191
|
32 function retval = sinetone (f, r, s, a) |
3426
|
33 |
3191
|
34 if (nargin == 1) |
|
35 r = 8000; |
|
36 s = 1; |
|
37 a = 64; |
|
38 elseif (nargin == 2) |
|
39 s = 1; |
|
40 a = 64; |
|
41 elseif (nargin == 3) |
|
42 a = 64; |
|
43 elseif ((nargin < 1) || (nargin > 4)) |
3449
|
44 usage ("sinetone (freq, rate, sec, ampl)"); |
3191
|
45 endif |
3426
|
46 |
3191
|
47 [err, f, a] = common_size (f, a); |
4030
|
48 if (err || ! isvector (f)) |
3457
|
49 error ("sinetone: freq and ampl must be vectors of common size"); |
3191
|
50 endif |
3426
|
51 |
4030
|
52 if (! (isscalar (r) && isscalar (s))) |
3457
|
53 error ("sinetone: rate and sec must be scalars"); |
3191
|
54 endif |
|
55 |
|
56 n = length (f); |
|
57 |
|
58 retval = zeros (r * s, n); |
|
59 for k = 1:n |
|
60 retval (:, k) = a(k) * sin (2 * pi * (1:r*s) / r * f(k))'; |
|
61 endfor |
3426
|
62 |
3191
|
63 endfunction |
|
64 |