Smooth a grid horizontally using interp2

조회 수: 22 (최근 30일)
K G
K G 2016년 10월 24일
댓글: K G 2016년 10월 25일
I have a grid - bRMS - of Sound Speed values. The x dimension is distance, sampled in km every 0.00625 km.
vbx=[0.00625:0.00625:35]';
The y dimension is depth (in time), sampled every 0.001 s.
vby=[0:0.001:0.5]';
I would like to smooth the grid in the horizontal direction only, apply a conversion, then smooth in the vertical direction.
My code to smooth the grid horizontally is:
vbx_smooth=[0.00625:0.00625*100:35]';
[Xq,Yq]=meshgrid(vbx_smooth,vby);
Vq=interp2(vX,vY,bRMS,Xq,Yq);
This is producing an error
Error using griddedInterpolant
The grid vectors do not define a grid of points that match the given values.
Error in interp2>makegriddedinterp (line 228)
F = griddedInterpolant(varargin{:});
Error in interp2 (line 136)
F = makegriddedinterp(X, Y, V, method,extrap);
Any help with this problem would be appreciated.
  댓글 수: 1
KSSV
KSSV 2016년 10월 24일
편집: KSSV 2016년 10월 24일
Check the dimensions of input's to interp2...they are not of same dimension, that's why error throwing out..

댓글을 달려면 로그인하십시오.

채택된 답변

Guillaume
Guillaume 2016년 10월 24일
Did you make a mistake in the names of the input to interp2. I would have thought the correct call would be:
Vq = interp2(vbx, vby, bRMS, Xq, Yq);
If not, you need to explain what vX and vY are as they clearly are not what interp2 expects.
  댓글 수: 1
K G
K G 2016년 10월 25일
Hi, yes I did, sorry. I have sorted that issue by using the correct inputs. Thank you for the help

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Smoothing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by