negative number in vector

12 ビュー (過去 30 日間)
bsta
bsta 2019 年 2 月 14 日
回答済み: madhan ravi 2019 年 2 月 14 日
say I have a vector v=[1 2 5 6 -8 5 2 7]
and I to create a new vector that has all the elements until the negative number shows up
such as c=[1 2 5 6]
how would you do this without using a while loop

採用された回答

madhan ravi
madhan ravi 2019 年 2 月 14 日
c=v(1:find(v<0,1,'first')-1)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

製品


リリース

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by