2847
|
1 ## Copyright (C) 1996, 1997 John W. Eaton |
2313
|
2 ## |
|
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 |
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
|
9 ## |
|
10 ## Octave is distributed in the hope that it will be useful, but |
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|
13 ## General Public License for more details. |
|
14 ## |
|
15 ## You should have received a copy of the GNU General Public License |
|
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. |
2303
|
19 |
3367
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {} sinc (@var{x}) |
|
22 ## Return |
|
23 ## @iftex |
|
24 ## @tex |
|
25 ## $ \sin (\pi x)/(\pi x)$. |
|
26 ## @end tex |
|
27 ## @end iftex |
|
28 ## @ifinfo |
|
29 ## sin(pi*x)/(pi*x). |
|
30 ## @end ifinfo |
|
31 ## @end deftypefn |
559
|
32 |
3367
|
33 ## Author: jwe ??? |
2314
|
34 |
2311
|
35 function result = sinc (x) |
559
|
36 |
3486
|
37 result = ones (size (x)); |
559
|
38 |
3486
|
39 i = (x != 0); |
559
|
40 |
3486
|
41 if (any (i)) |
|
42 t = pi * x(i); |
|
43 result(i) = sin (t) ./ t; |
559
|
44 endif |
|
45 |
|
46 endfunction |