How to define a variable of datetime datatype, having null value?

17 ビュー (過去 30 日間)
bushra raza
bushra raza 2018 年 11 月 15 日
コメント済み: Steven Lord 2018 年 11 月 15 日
I am working on water level timeseries in a project. For this I have to compare water level with a threshold value and corresponding date of the respective water level is to be recorded in a datetime variable. If the water level value is not greater than the threshold value, then corresponding date variable must be null or empty. Please guide any suggestion?
Here is my sample code:
highObservations_date = datetime; %this variable has current datetime, it must be initialized with % a null value
highObservations_value = 0;
highLevelCounter = 0;
% set threshold to be considered as High water level
threshold_High_waterlevel = double(median( BreedingSeason_waterlevels.timmendorf_water(:,1)));
for i= 1:size(BreedingSeason_waterlevels,1)
if( BreedingSeason_waterlevels.timmendorf_water(i,1) >threshold_High_waterlevel )
highLevelCounter = highLevelCounter + 1;
highObservations_date = BreedingSeason_waterlevels.timmendorf_time(i,1);
highObservations_value = BreedingSeason_waterlevels.timmendorf_water(i,1);
end % end of if
if (highLevelCounter >1)
break;
end % end of if
end % end of for loop

採用された回答

Steven Lord
Steven Lord 2018 年 11 月 15 日
The standard missing value for a datetime array is NaT.
  2 件のコメント
bushra raza
bushra raza 2018 年 11 月 15 日
thanx , it worked . but now i have another query regarding this NaT.
i want to check if a datetime variable is not null,then do a list of code , but although my variable is having NaT value,even then the inner code runs.. i put it like this :
if(highObservations_date ~= NaT )
Lost = Lost +1; %increment Lost by 1
end %end of if
Steven Lord
Steven Lord 2018 年 11 月 15 日
NaT is not equal to any other datetime, not even another NaT. Use the isnat function to detect NaT values in your datetime array just like you would use isnan to detect NaN values in a double array.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by