find index of a matrix through another matrix

조회 수: 4 (최근 30일)
Salvatore Mazzarino
Salvatore Mazzarino 2012년 9월 21일
I have this matrix A = [1 3 4 6 7] and B = [3 4] that it's a subset of A matrix. For example I would find the index of B matrix through A matrix. Having 3 as number I would know the index of 3 in matrix B.How can I do?

답변 (3개)

Azzi Abdelmalek
Azzi Abdelmalek 2012년 9월 21일
편집: Azzi Abdelmalek 2012년 9월 21일
B = [3 4]
idx=find(B==3)
  댓글 수: 2
Azzi Abdelmalek
Azzi Abdelmalek 2012년 9월 21일
you have asked about index in B , what about A?
Salvatore Mazzarino
Salvatore Mazzarino 2012년 9월 21일
Because in my scripts I don't have directly A matrix.This is an example that permitted me to understand how find works.

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


per isakson
per isakson 2012년 9월 21일
편집: per isakson 2012년 9월 21일
This is possible if A and B are whole numbers
A = [ 1, 3, 4, 6, 7 ];
B = [ 3, 4 ];
ix1 = strfind( A, B );
ix2 = ix1 + numel(B) - 1;
all( B == A(ix1:ix2) )
If I understood you correct

Image Analyst
Image Analyst 2012년 9월 21일
Actually I thought first that what you meant was what per answered, but then I read your response to Azzi. I'm not sure you worded this correctly but when Azzi asked about it, you seemed to indicate it was worded exactly as you wanted. So in that case, I guess that would mean that if B is in A, the index of B (and you did say in B, not A) would always be 1. If B is not in A then there is no solution - obviously since B is not in A.

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by