Vectorize operations referencing adjacent elements of a matrix
古いコメントを表示
I have made the simple code:
for i=2:xsize-1
for j=2:ysize-1
for n=2:zsize-1
matrix(i,j,n)=matrix(i,j,n)+0.2*(matrix(i,j,n)*6-matrix(i-1,j,n)-matrix(i+1,j,n)-matrix(i,j-1,n)-matrix(i,j+1,n)-matrix(i,j,n-1)-matrix(i,j,n+1));
end
end
end
This is part of a diffusion problem and it is particularly slow because the 3D matrix is large. Is it possible to vectorize an operation like this? How do you vectorize references to the matrix like this?
採用された回答
その他の回答 (0 件)
カテゴリ
ヘルプ センター および File Exchange で Numeric Types についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!