필터 지우기
필터 지우기

how to interpolate the 393x32 matrix which consists zeroes in between

조회 수: 1 (최근 30일)
laxminarayana pasupuleti
laxminarayana pasupuleti 2015년 10월 26일
답변: Jan 2015년 10월 26일
in my data set along the zeroes are present(which i didnt required) so i have to remove it, and make my data even series by cubic interpolation.
how to do this?

답변 (1개)

Jan
Jan 2015년 10월 26일
Set the zeros to NaN:
Data(Data == 0) = NaN;
Then use one of the many solutions from tzhe FileExchange: FEX: Search interpolate+nan

카테고리

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