フィルターのクリア

how can I calculate the number of cristalysing cycles in MATLAB?

2 ビュー (過去 30 日間)
Hamed Hedayatnia
Hamed Hedayatnia 2019 年 11 月 19 日
回答済み: Mahesh Taparia 2019 年 11 月 22 日
HI. I am engaged with a meteorological dataset. I am working on the relative humidity variable based on hourly data. I want to calculate the number of cycles in which, the relative humidity cross the 75.3%. for two consecutive days. How can I show this phase change point in in index to apply it on my timetable?

回答 (1 件)

Mahesh Taparia
Mahesh Taparia 2019 年 11 月 22 日
Hi Hamed,
To count the number of times RH>75.3%, first you store your dataset in a variable and take a counter (initialize to 0) variable in a for loop. Then check for the condition whether RH>75.3%, if so then set count=count+1. The final count value will give the required frequency. For example, consider the below code:
Count=0;
for i=1:length(data)
if(data(i)>75.3)
Count=Count+1;
else
end
end

カテゴリ

Help Center および File ExchangeParticle & Nuclear Physics についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by