7017
|
1 ## Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2004, 2005, 2006, |
|
2 ## 2007 Andreas Weingessel |
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} {} sinewave (@var{m}, @var{n}, @var{d}) |
|
22 ## Return an @var{m}-element vector with @var{i}-th element given by |
|
23 ## @code{sin (2 * pi * (@var{i}+@var{d}-1) / @var{n})}. |
3191
|
24 ## |
4834
|
25 ## The default value for @var{d} is 0 and the default value for @var{n} |
|
26 ## is @var{m}. |
3449
|
27 ## @end deftypefn |
3191
|
28 |
3457
|
29 ## Author: AW <Andreas.Weingessel@ci.tuwien.ac.at> |
|
30 ## Description: Compute a sine wave |
3191
|
31 |
|
32 function x = sinewave (m, n, d) |
3426
|
33 |
4834
|
34 if (nargin > 0 && nargin < 4) |
|
35 if (nargin < 3) |
|
36 d = 0; |
|
37 endif |
|
38 if (nargin < 2) |
|
39 n = m; |
|
40 endif |
|
41 x = sin (((1 : m) + d - 1) * 2 * pi / n); |
|
42 else |
6046
|
43 print_usage (); |
3191
|
44 endif |
|
45 |
|
46 endfunction |