Skip to content

Commit 97630ad

Browse files
included consent statement
1 parent 7d1debc commit 97630ad

File tree

4 files changed

+4
-7
lines changed

4 files changed

+4
-7
lines changed

docs/src/czt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CZTs
22
Chirp Z Transformations: Allows Fourier-transformation and at the same time zooming into the result,
33
which is why it is also called the Zoomed-FFT algorithm.
4-
The algorithm is based on a publication [Rabiner, Schafer, Rader, The Cirp z-Transform Algorithm, IEEE Trans AU 17(1969) p. 86] and a matlab Version written by the group of H. Gross. It currently needs three FFTs to perform its work.
4+
The algorithm is loosely based on a publication [Rabiner, Schafer, Rader, The Cirp z-Transform Algorithm, IEEE Trans AU 17(1969) p. 86] and a 2D Matlab Version written by N.G. Worku & H. Gross, with their consent (28. Oct. 2020) to make it openly available. It currently needs three FFTs to perform its work.
55
As one of these FFTs only depends on the datasize and zoom parameters, it can be moved to a plan in future implementations.
66

77
```@docs

docs/src/resampling.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,5 @@ FourierTools.resample_by_RFFT
7878
FourierTools.resample_nfft
7979
FourierTools.resample_czt
8080
FourierTools.upsample2
81-
FourierTools.upsample2_abs2
82-
FourierTools.upsample2_1D
8381
FourierTools.barrel_pin
8482
```

src/czt.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ export czt, iczt
66
Chirp z transform along a single direction d of an ND array `xin` into the ND array 'xout'.
77
Note that xin and xout can be the same array for inplace operations.
88
Note that the result type is defined by `eltype(xin)` and not by `scales`.
9-
This code is based on a 2D Matlab version of the CZT, written by H. Gross et al.
10-
9+
1110
#References: Rabiner, Schafer, Rader, The Cirp z-Transform Algorithm, IEEE Trans AU 17(1969) p. 86
11+
This code is loosely based on a 2D Matlab version of the CZT, written by N.G. Worku & H. Gross
12+
with their consent (28. Oct. 2020) to make it openly available.
1213
1314
# Arguments:
1415
+ `xin`: array to transform

src/resampling.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
export resample
22
export resample_by_FFT
33
export resample_by_RFFT
4-
export upsample2_abs2
54
export upsample2
6-
export upsample2_1D
75
export resample_nfft
86
export resample_czt
97
export barrel_pin

0 commit comments

Comments
 (0)