Getting the position of a value in a vector

2 ビュー (過去 30 日間)
Adam Palmer
Adam Palmer 2014 年 8 月 5 日
コメント済み: Star Strider 2014 年 8 月 5 日
Hey Matlab community, I have another one for you all. I have a vector of values BAC_F that corresponds with time, and I want the first position of BAC(BAC_F<.08) , but I can't quite figure it out. Any help and suggestions are appreciated.

採用された回答

Star Strider
Star Strider 2014 年 8 月 5 日
If you want the index of the first value where BAC < 0.08:
BACx = find(BAC < 0.08, 1, 'first')
  2 件のコメント
Adam Palmer
Adam Palmer 2014 年 8 月 5 日
Thats just what I was going for, Thanks again Star Strider!!
Star Strider
Star Strider 2014 年 8 月 5 日
Again, my pleasure!

サインインしてコメントする。

その他の回答 (1 件)

Ben11
Ben11 2014 年 8 月 5 日
編集済み: Ben11 2014 年 8 月 5 日
YourVector = BAC(BAC_F<0.8)
Then
FirstValue = YourVector(1)
Is that what you meant?
If not it might simply be
YourVector = BAC_F < 0.8
Do you want to sort the array? Then you can use
sort(YourVector)
and then get the first element.

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by