필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

matrix

조회 수: 3 (최근 30일)
ricco
ricco 2011년 11월 17일
마감: MATLAB Answer Bot 2021년 8월 20일
I have a matrix (100000x16) where the columns refer to depths and the rows refer to days and the data is of temperature. Some of the data is faulty i.e. gives readings which are obviously wrong. If every row is a measurement taken every 4 minutes how is it possible to state that if any temperature varies by one degree compared to the next measurement (i.e. the next row) to change it to nan?
cheers

답변 (2개)

Robert Cumming
Robert Cumming 2011년 11월 17일
something like:
data(data(2:end,:)-data(1:end-1,:)>1)=NaN
  댓글 수: 3
Robert Cumming
Robert Cumming 2011년 11월 17일
it should still work with NaN in your matrix - when you say it doesn;t seem to work - do you get an error message?
ricco
ricco 2011년 11월 17일
No I dont get an error message, it doesnt change the values i.e. I still get values which are greater than 1 degree difference from the next.

Walter Roberson
Walter Roberson 2011년 11월 17일
Robert's suggestion of
data(data(2:end,:)-data(1:end-1,:)>1)=NaN
should be close, but his logical matrix will be one element short, which will lead to difficulties.
Ricco, you need to define specifically: when you have two consecutive values that differ by more than 1 degree, is it the first value that should be set to NaN, or the second value? The choice will determine whether Robert's logical array needs to be padded at the beginning or the end.
Also, there should be an abs() wrapped around the difference calculation.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by