| 查看: 752 | 回复: 1 | |||
[交流]
二维快速傅里叶变换已有1人参与
|
|
想要请教一下用matlab代码处理 二维快速傅里叶变换,有时间的大佬可以联系我交流一下吗,求助 发自小木虫Android客户端 |
» 猜你喜欢
请问有评职称,把科研教学业绩算分排序的高校吗
已经有6人回复
2025冷门绝学什么时候出结果
已经有6人回复
Bioresource Technology期刊,第一次返修的时候被退回好几次了
已经有7人回复
真诚求助:手里的省社科项目结项要求主持人一篇中文核心,有什么渠道能发核心吗
已经有8人回复
寻求一种能扛住强氧化性腐蚀性的容器密封件
已经有5人回复
请问哪里可以有青B申请的本子可以借鉴一下。
已经有4人回复
请问下大家为什么这个铃木偶联几乎不反应呢
已经有5人回复
天津工业大学郑柳春团队欢迎化学化工、高分子化学或有机合成方向的博士生和硕士生加入
已经有4人回复
康复大学泰山学者周祺惠团队招收博士研究生
已经有6人回复
AI论文写作工具:是科研加速器还是学术作弊器?
已经有3人回复
wangyikeco
木虫 (正式写手)
newbie
- 应助: 84 (初中生)
- 金币: 6652
- 帖子: 525
- 在线: 107.1小时
- 虫号: 25598800
- 注册: 2021-03-03
- 性别: GG
- 专业: 凝聚态物性 II :电子结构
★
小木虫: 金币+0.5, 给个红包,谢谢回帖
小木虫: 金币+0.5, 给个红包,谢谢回帖
|
fft2 2-D fast Fourier transformcollapse all in page Syntax Y = fft2(X) Y = fft2(X,m,n) Description example Y = fft2(X) returns the two-dimensional Fourier transform of a matrix using a fast Fourier transform algorithm, which is equivalent to computing fft(fft(X).').'. If X is a multidimensional array, then fft2 takes the 2-D transform of each dimension higher than 2. The output Y is the same size as X. example Y = fft2(X,m,n) truncates X or pads X with trailing zeros to form an m-by-n matrix before computing the transform. Y is m-by-n. If X is a multidimensional array, then fft2 shapes the first two dimensions of X according to m and n. Examples collapse all 2-D Transform View MATLAB Command The 2-D Fourier transform is useful for processing 2-D signals and other 2-D data such as images. Create and plot 2-D data with repeated blocks. P = peaks(20); X = repmat(P,[5 10]); imagesc(X) Figure contains an axes. The axes contains an object of type image. Compute the 2-D Fourier transform of the data. Shift the zero-frequency component to the center of the output, and plot the resulting 100-by-200 matrix, which is the same size as X. Y = fft2(X); imagesc(abs(fftshift(Y))) Figure contains an axes. The axes contains an object of type image. Pad X with zeros to compute a 128-by-256 transform. Y = fft2(X,2^nextpow2(100),2^nextpow2(200)); imagesc(abs(fftshift(Y))); Figure contains an axes. The axes contains an object of type image. Input Arguments collapse all X — Input array matrix | multidimensional array Input array, specified as a matrix or a multidimensional array. If X is of type single, then fft2 natively computes in single precision, and Y is also of type single. Otherwise, Y is returned as type double. Data Types: double | single | int8 | int16 | int32 | uint8 | uint16 | uint32 | logical Complex Number Support: Yes m — Number of transform rows positive integer scalar Number of transform rows, specified as a positive integer scalar. Data Types: double | single | int8 | int16 | int32 | uint8 | uint16 | uint32 | logical n — Number of transform columns positive integer scalar Number of transform columns, specified as a positive integer scalar. Data Types: double | single | int8 | int16 | int32 | uint8 | uint16 | uint32 | logical More About collapse all 2-D Fourier Transform This formula defines the discrete Fourier transform Y of an m-by-n matrix X: Y p+1,q+1 = m−1 j=0 n−1 k=0 ω jp m ω kq n X j+1,k+1 ωm and ωn are complex roots of unity: ω m =e −2πi/m ω n =e −2πi/n i is the imaginary unit. p and j are indices that run from 0 to m–1, and q and k are indices that run from 0 to n–1. This formula shifts the indices for X and Y by 1 to reflect matrix indices in MATLAB®. |
2楼2021-07-21 00:25:42













回复此楼