필터 지우기
필터 지우기

what is meaning of && sign here ?

조회 수: 1 (최근 30일)
serhat dag
serhat dag 2016년 12월 27일
답변: Walter Roberson 2016년 12월 27일
if res>=120 & res<=200
if res_2>=480 & res_2<=600
P_1='PERSON IS HEALTY';
disp('PERSON IS HEALTY')
elseif res_2<450 && res_2>430
P_1='PERSON IS SUFFERING FROM TACHYCARDIA';
disp('PERSON IS SUFFERING FROM TACHYCARDIA')
elseif res_2>450 && res_2<480
P_1='PERSON IS SUFFERING FROM BRADYCARDIA';
disp('PERSON IS SUFFERING FROM BRADYCARDIA')
else
P_1='Not Clear in ECG Signal';
disp('Not Clear in ECG Signal')
end
end
if res>200
P_1='PERSON IS SUFFERING FIRST DEGREE HEART BLOCK';
disp('PERSON IS SUFFERING FIRST DEGREE HEART BLOCK')
end

답변 (1개)

Walter Roberson
Walter Roberson 2016년 12월 27일

카테고리

Help CenterFile Exchange에서 ECG / EKG에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by