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 に実装されています。2D 自己相関には xcorr2(a) を使用し、3D には convn(a,a(end:-1:1,end:-1:1,end:-1:1)) を使用します。