Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 MATLAB 中计算矩阵 A 和 B 之间的 2D 和 3D 自相关。有什么功能可以做到吗?
自相关是在 MATLAB 中作为互相关的一种特殊情况实现的。只需将 xcorr2(a) 用于 2D 自相关,将 convn(a,a(end:-1:1,end:-1:1,end:-1:1)) 用于 3D。