How to do an average alarm???????

Average alarm. When the average of the certain values in every 5 seconds goes ABOVE a selected threshold it says 'warning'
how do I do this in matlab?
thanks

1 件のコメント

Sara Meireles
Sara Meireles 2019 年 3 月 14 日
load('matlab.mat')
figure
plot(matlab.Time,y)
title('Instant alarm')
hold on
y=average(time:5000+time);
for time=1:length(matlab.Time)
if y>=23
disp=('Warning, temperature too high!');
else
disp=('Normal temperature!');
end
end

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

回答 (0 件)

質問済み:

2019 年 3 月 14 日

コメント済み:

2019 年 3 月 14 日

Community Treasure Hunt

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

Start Hunting!

Translated by