3191
|
1 ## Copyright (C) 1997 by Vincent Cautaerts |
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} {} fftshift (@var{v}) |
|
22 ## Perform a shift of the vector @var{v}, for use with the @code{fft} |
|
23 ## and @code{ifft} functions, in order the move the frequency 0 to the |
3499
|
24 ## center of the vector or matrix. |
3191
|
25 ## |
3499
|
26 ## If @var{v} is a vector of @math{E} elements corresponding to @math{E} |
|
27 ## time samples spaced of @math{Dt} each, then @code{fftshift (fft |
3449
|
28 ## (@var{v}))} corresponds to frequencies |
3191
|
29 ## |
3449
|
30 ## @example |
3499
|
31 ## f = linspace (-E/(4*Dt), (E/2-1)/(2*Dt), E) |
3449
|
32 ## @end example |
3191
|
33 ## |
3499
|
34 ## If @var{v} is a matrix, the same holds for rows and columns. |
3449
|
35 ## @end deftypefn |
3191
|
36 |
|
37 ## Author: Vincent Cautaerts <vincent@comf5.comm.eng.osaka-u.ac.jp> |
|
38 ## Created: July 1997 |
|
39 ## Adapted-By: jwe |
|
40 |
|
41 function retval = fftshift (V) |
|
42 |
|
43 retval = 0; |
|
44 |
|
45 if (nargin != 1) |
|
46 usage ("usage: fftshift (X)"); |
|
47 endif |
|
48 |
|
49 if (is_vector (V)) |
|
50 x = length (V); |
|
51 xx = ceil (x/2); |
|
52 retval = V([xx+1:x, 1:xx]); |
|
53 elseif (is_matrix (V)) |
|
54 [x, y] = size (V); |
|
55 xx = ceil (x/2); |
|
56 yy = ceil (y/2); |
|
57 retval = V([xx+1:x, 1:xx], [yy+1:y, 1:yy]); |
|
58 else |
|
59 error ("fftshift: expecting vector or matrix argument"); |
|
60 endif |
|
61 |
|
62 endfunction |