Interpolation of zero values ​​in matlab

조회 수: 43 (최근 30일)
Lev Mihailov
Lev Mihailov 2019년 7월 18일
댓글: Alex Mcaulley 2019년 7월 22일
Hello! The readings from the gas sensor look like this: 70 71 0 69 0, at a temperature of 12 12.2 12.1 11.9 11.2. I try to interpolate all zero values, but for some reason I don’t consider it at all
[cat,nocat]=min(Animals); %readings from a 1x1200 thermometer
[dog,nodog]=max(Animals); % gas sensor reading 1x1200
for i=1:length(cat)
if dog(i)<0 % if some indication is less than 0 (they are all positive)
interpol(i)=dog(i); % the location of these zeros and this is what we interpolate (1 and the last value are not zero)
c(i)=interp1(interpol(i),cat(i),nearest); % interpolate;
else(i) dog(i)>0 % if the values ​​are greater than 0
c(i)= dog(i); % That testimony and remain
end
end

채택된 답변

Alex Mcaulley
Alex Mcaulley 2019년 7월 18일
편집: Alex Mcaulley 2019년 7월 18일
Try this: (Note that "cat" is not a good variable name because it is a Matlab function)
[cat,nocat]=min(Animals); %readings from a 1x1200 thermometer
[dog,nodog]=max(Animals); % gas sensor reading 1x1200
vq = interp1(cat(dog>0),dog(dog>0),cat(dog<=0),'nearest','extrap'); %nearest or other interpolation method you want
dog(dog<=0) = vq;
  댓글 수: 6
Lev Mihailov
Lev Mihailov 2019년 7월 22일
Thank you, everything seems to work, but now I have 202 values. And I just wanted to replace my zeros in the dog with the values ​​of this interpolation, that would be 1x1200, all values ​​are positive numbers
Alex Mcaulley
Alex Mcaulley 2019년 7월 22일
What variable has 202 values? vq? That is right (it is the number of zeros in dog variable)
If you see the dog variable it should have the same number of elements than in the begining (1200) with non zero values.

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

추가 답변 (0개)

카테고리

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

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by