For loop alternative method

Hi
Instead of using a long for loop and if statement, is there alternative method of anylsing a array to on display values which are above or below a certain limit?
For example when sensor is above certain value?

2 个评论

Logical indexing.
Is there any example
For example i have two arrays
SensorA
And
Temperture.
I would like to find all points in SensorA when temperure is below 30 degrees, and then using that data to preform mean, mode ,etc.

请先登录,再进行评论。

 采纳的回答

Torsten
Torsten 2022-8-31
移动:Matt J 2022-8-31
SensorA_under_30_degrees = SensorA(Temperature<30)

2 个评论

Thanks
I will try that.
At the momment i am using:
temp_ind=find(iot_temperture < 30);
no2_comp = iot_no2_we_voltage(temp_ind);
And you get an error message ?
Then maybe iot_no2_we_voltage and iot_temperture don't have the same length.
(Shouldn't it be "iot_temperature" instead of "iot_temperture" or did you want to save a character in writing ?)

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Logical 的更多信息

产品

版本

R2022a

标签

Community Treasure Hunt

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

Start Hunting!

Translated by