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