Extracting value from array and determine it position

1 次查看(过去 30 天)
suppose i have this table.
How do i determine how many days the temp in lake A was above 60 and on what day its happen? I use this commands but it doesnt satisfy my question.
temp_A=[55 62 60 61 63 65 62 59 58 56];
x=find(temp_A>60)
x = 1×5
2 4 5 6 7
position=temp_A(x)
position = 1×5
62 61 63 65 62
  4 个评论
Matt J
Matt J 2021-5-7
I edited your post to show the results of running your computation. It seems to give exactly the results you say you expect. Are you seeing something different?
Amril Luqman
Amril Luqman 2021-5-7
Ohhh i see, i need to separate the commands. Thanks for correcting me!!

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

标签

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by