8920
|
1 ## Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2005, 2006, 2007, 2008 |
7017
|
2 ## Friedrich Leisch |
3426
|
3 ## |
3922
|
4 ## This file is part of Octave. |
|
5 ## |
|
6 ## Octave is free software; you can redistribute it and/or modify it |
|
7 ## under the terms of the GNU General Public License as published by |
7016
|
8 ## the Free Software Foundation; either version 3 of the License, or (at |
|
9 ## your option) any later version. |
3426
|
10 ## |
3922
|
11 ## Octave is distributed in the hope that it will be useful, but |
3191
|
12 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
14 ## General Public License for more details. |
|
15 ## |
3191
|
16 ## You should have received a copy of the GNU General Public License |
7016
|
17 ## along with Octave; see the file COPYING. If not, see |
|
18 ## <http://www.gnu.org/licenses/>. |
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)) |
6046
|
44 print_usage (); |
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); |
7610
|
57 ns = round (r * s); |
3191
|
58 |
7610
|
59 retval = zeros (ns, n); |
|
60 |
3191
|
61 for k = 1:n |
7610
|
62 retval (:, k) = a(k) * sin (2 * pi * (1:ns) / r * f(k))'; |
3191
|
63 endfor |
3426
|
64 |
3191
|
65 endfunction |
|
66 |
7610
|
67 %!assert (size (sinetone (18e6, 150e6, 19550/150e6, 1)), [19550, 1]); |