Feeds
질문
I have grid frequency data, first column is time(Time) and second is frequency (Value). I want to calculate the duration of each cycle between 50 to 49.90 Hz.
data = readtable("2023-01-01.csv"); Freq = data.Value; Time = datetime(data.Time); logind = [false; Freq<=50 & Freq >=49.90 ...
거의 2년 전 | 답변 수: 1 | 0
