Hi guys, how do I find in my specific binary pattern in another array that has binary values? I mean lets assume I have
a=[1 0 1] (binary values)
the other array b=[1 1 1 1 1 1 1 1 0 0 0 0 0 1 1 1 1 0 1] (binary values)
So Im searching inside b about a which I want to return the started index of my pattern in other other array, any help how could I implement that?

답변 (1개)

Voss
Voss 2020년 6월 29일

0 개 추천

Look into strfind.
idx = strfind(b,a); % strfind implicitly converts a and b to char arrays

댓글 수: 3

Mohamed Jamal
Mohamed Jamal 2020년 7월 5일
Hi !
but my purpose is to find the started index of my pattern in the other array!, not actually converting to string ..
Voss
Voss 2020년 7월 5일
strfind does the job.
Turlough Hughes
Turlough Hughes 2020년 7월 9일
Your vectors a, and b remain unchanged. The output of strfind is a start index for each occurence of a in b as you requested.

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

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

질문:

2020년 6월 29일

댓글:

2020년 7월 9일

Community Treasure Hunt

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

Start Hunting!

Translated by