how to use assert to test logical array

조회 수: 2 (최근 30일)
Arif
Arif 2024년 2월 23일
댓글: Arif 2024년 2월 23일
hi guys, can u help me to solve this problem. I am trying to use assert to test my logical array shown photo below.
as u can see, my variable 'checkfuse' is logical array and it contains 1 or 0.
i want to test if there are any 0, then it should give me an error 'Fuse error"

채택된 답변

Cris LaPierre
Cris LaPierre 2024년 2월 23일
Use all.
checkfuse = [true;false]
checkfuse = 2×1 logical array
1 0
assert(all(checkfuse),'Fuse error')
Error using assert
Fuse error

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Function-Based Unit Tests에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by