CUDAFourier[list]
finds the discrete Fourier transform of a list of complex numbers.
CUDAFourier[mem]
finds the discrete Fourier transform of a CUDAMemory.
CUDAFourier
CUDAFourier[list]
finds the discrete Fourier transform of a list of complex numbers.
CUDAFourier[mem]
finds the discrete Fourier transform of a CUDAMemory.
更多信息和选项
- The CUDALink application must be loaded using Needs["CUDALink`"].
- CUDAFourier works on one-, two-, and three-dimensional lists.
范例
打开所有单元 关闭所有单元基本范例 (3)
First, load the CUDALink application:
Needs["CUDALink`"]This generates a random list of reals:
lst = RandomReal[1., {10}];This computes the one-dimensional Fourier transform using CUDA:
CUDAFourier[lst]The result agrees with the Wolfram Language:
Fourier[lst]CUDAFourier works on two-dimensional datasets. Here, a dataset is generated:
data = Table[Mod[Binomial[i, j], 2], {i, 0, 63}, {j, 0, 63}];Find the logarithmic power spectrum:
ArrayPlot[Log[Abs[CUDAFourier[data]]]]CUDAFourier can be used on multidimensional datasets. This gets the data from an image:
lst = ImageData[[image]];This performs the Fourier operation:
out = CUDAFourier[lst];This shows the absolute value of the result:
Image[Abs[out]]相关指南
-
▪
- CUDALink
文本
Wolfram Research (2010),CUDAFourier,Wolfram 语言函数,https://reference.wolfram.com/language/CUDALink/ref/CUDAFourier.html.
CMS
Wolfram 语言. 2010. "CUDAFourier." Wolfram 语言与系统参考资料中心. Wolfram Research. https://reference.wolfram.com/language/CUDALink/ref/CUDAFourier.html.
APA
Wolfram 语言. (2010). CUDAFourier. Wolfram 语言与系统参考资料中心. 追溯自 https://reference.wolfram.com/language/CUDALink/ref/CUDAFourier.html 年
BibTeX
@misc{reference.wolfram_2026_cudafourier, author="Wolfram Research", title="{CUDAFourier}", year="2010", howpublished="\url{https://reference.wolfram.com/language/CUDALink/ref/CUDAFourier.html}", note=[Accessed: 10-September-2026]}
BibLaTeX
@online{reference.wolfram_2026_cudafourier, organization={Wolfram Research}, title={CUDAFourier}, year={2010}, url={https://reference.wolfram.com/language/CUDALink/ref/CUDAFourier.html}, note=[Accessed: 10-September-2026]}