@@ -2877,6 +2877,13 @@ FFT functions in Julia are largely implemented by calling functions from `FFTW <
2877
2877
arguments, and the size of the transformed result, are the same as
2878
2878
for :func: `rfft `.
2879
2879
2880
+ .. function :: plan_brfft(A, d [, dims [, flags [, timelimit]]])
2881
+
2882
+ Pre-plan an optimized real-input unnormalized transform, similar to
2883
+ :func: `plan_rfft ` except for :func: `brfft ` instead of :func: `rfft `.
2884
+ The first two arguments and the size of the transformed result, are
2885
+ the same as for :func: `brfft `.
2886
+
2880
2887
.. function :: plan_irfft(A, d [, dims [, flags [, timelimit]]])
2881
2888
2882
2889
Pre-plan an optimized inverse real-input FFT, similar to :func: `plan_rfft `
@@ -2958,6 +2965,15 @@ FFT functions in Julia are largely implemented by calling functions from `FFTW <
2958
2965
2959
2966
Convolution of two vectors. Uses FFT algorithm.
2960
2967
2968
+ .. function :: conv2(u,v,A)
2969
+
2970
+ 2-D convolution of the matrix ``A `` with the 2-D separable kernel generated by
2971
+ the vectors ``u `` and ``v ``. Uses 2-D FFT algorithm
2972
+
2973
+ .. function :: conv2(B,A)
2974
+
2975
+ 2-D convolution of the matrix ``B `` with the matrix ``A ``. Uses 2-D FFT algorithm
2976
+
2961
2977
.. function :: xcorr(u,v)
2962
2978
2963
2979
Compute the cross-correlation of two vectors.
0 commit comments