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 ExchangeStartup 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