information about the number of times temperature changes from negative to positive

조회 수: 1 (최근 30일)
Hello
I have a time series with daily temperatures. The time series is starting with negative temperature. After some days the temperature is shifting from negative to positive and after some days back to negative. How can I get information about the number of times the temperature has changed from negative to positive.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2018년 8월 12일
편집: KALYAN ACHARJYA 2018년 8월 12일
*Consider the temperatures as a vector a
count=0;
for i=1:length(a)-1
if a(i)<0 && a(i+1)>0
count=count+1;
end
end
disp(count);

추가 답변 (1개)

Johannes Deelstra
Johannes Deelstra 2018년 8월 12일
thanks very much

카테고리

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

태그

제품


릴리스

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by