How do I smooth 2D vector field data?
3 ビュー (過去 30 日間)
古いコメントを表示
I have a vector field in 2D. How can I smooth the data? I found smooth and smooth3 but it seems there is nothing for 2D. Could someone help me?
0 件のコメント
回答 (1 件)
David Young
2011 年 7 月 6 日
Split your vector field into components (how to do this depends on how it is stored to start with). Smooth each component separately and reassemble them if necessary.
To smooth a 2-D scalar array, you can use conv2 with a suitable kernel. The choice of kernel depends on how much you want to smooth and what your smoothing requirements are. Typically a Gaussian is a good choice - if you have the Image Processing Toolbox you can use fspecial to get one.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!