How to find specific entry values in a vector?

1 回表示 (過去 30 日間)
LS
LS 2021 年 5 月 20 日
コメント済み: LS 2021 年 5 月 20 日
I would like to consider only the 3's between the 1's and 2's.
x = [1, 1, 1, 3, 3 ,3 ,2 ,2, 3, 3, 1, 1, 1 , 3, 3, 2 ,3,...];
Desired result: r = [0, 0, 0, 3, 3, 3, 0, 0, 0, 0, 0, 0, 0 ,3 ,3 , 0 ,....]
for i = 1:length(x)-1
if x(i)==1 && x(i+1) == 3
while ...?

回答 (1 件)

KSSV
KSSV 2021 年 5 月 20 日
x = [1, 1, 1, 3, 3 ,3 ,2 ,2, 3, 3, 1, 1, 1 , 3, 3, 2 ,3];
x(x~=3) = 0
x = 1×17
0 0 0 3 3 3 0 0 3 3 0 0 0 3 3 0 3
  1 件のコメント
LS
LS 2021 年 5 月 20 日
Thanks, but it's not what I meant. I would like to get these values (every group of 3's between 1 and 2)

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

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by