Find all occuarances of two numbers together

조회 수: 1 (최근 30일)
Inna Pelloso
Inna Pelloso 2020년 10월 26일
댓글: Image Analyst 2020년 10월 26일
Hi,
I have an array, a = [ 0 -1 1 0 0 -1 1 0]
How can I fing all the ocurances of [ 1 0], ie. the index showing when the number 0 occurs after the number 1.
I want to create, b = [0 0 0 1 0 0 0 0 1].
I'm trying to use teh strfind fuction, but am stuck.
Thank you!
Inna

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 10월 26일
Try this
a = [ 0 -1 1 0 0 -1 1 0];
idx = strfind(a, [1 0])+1;
b = zeros(size(a));
b(idx) = 1;

추가 답변 (1개)

Mathieu NOE
Mathieu NOE 2020년 10월 26일
hello Inna
you have to test a vs [1 0] and not [0 1]
this is the code :
a = [ 0 -1 1 0 0 -1 1 0];
t = [1 0];
ind = findstr(a,t);
ind_zero = ind+1; % findstr output index is for the first term of "t" (1) => to get the index of the trailing "0" you need to add 1
b = zeros(size(a));
b(ind_zero) = 1
  댓글 수: 2
Bruno Luong
Bruno Luong 2020년 10월 26일
편집: Bruno Luong 2020년 10월 26일
Attention, better use strfind and not findstr, if a = 1
>> findstr(1,[0 1]) % not expected result
ans =
2
>> strfind(1,[0 1])
ans =
[]
Image Analyst
Image Analyst 2020년 10월 26일
findstr is not recommended. Use contains or strfind instead.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Install Products에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by