Simulink StateFlow Variable assign

Could any tell us how these codes work? What the mean of "<" in these codes? Many thanks

답변 (1개)

Mark McBroom
Mark McBroom 2017년 11월 30일
편집: Mark McBroom 2017년 11월 30일

0 개 추천

The code gets executed when entering the "Modes" state and every simulation step while the Modes state is active. To understand the "<" sign, type the code into the MATLAB command window:
>> SonarSensors = [1 1 1 1 1];
>> SensorRanges = [2 2 2 2 2];
>> [SonarSensors(4:5)] < SensorRanges(4:5)
ans =
1×2 logical array
1 1

카테고리

도움말 센터File Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품

질문:

2017년 11월 28일

편집:

2017년 11월 30일

Community Treasure Hunt

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

Start Hunting!

Translated by