필터 지우기
필터 지우기

How to perform simple interpolation of excel data on matlab?

조회 수: 1 (최근 30일)
Samantha Chong
Samantha Chong 2015년 10월 31일
편집: dpb 2015년 10월 31일
Hi All, I've attached an image of how my .xlsx file looks like so it would be easier to explain my scenario: As you can see from the .xlsx, there are two columns, in the second column, there are some "blank cells", my objective is to perform interpolation in order to fill in the blank cells. I understand that linear interpolation can be performed if the NGap=1, but I really need help with the interpolation when NGap=2, 3, 4, 5. Thank you very much for your kind assistance :)

답변 (1개)

dpb
dpb 2015년 10월 31일
편집: dpb 2015년 10월 31일
x=xlsread('yourExcelFile');
idx=isnan(x(:,2));
x(idx,2)=interp1(x(~idx,1),x(~idx,2),x(idx,1));
doc xlsread
doc interp1 % for details
--

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by