필터 지우기
필터 지우기

get a subcell from a bigger cell

조회 수: 8 (최근 30일)
Miguel Reina
Miguel Reina 2018년 2월 5일
댓글: Jan 2018년 2월 5일
I have a cell of 10x9 named 'a', each index contains a string. How can i create a sub cell if i have two vectors (f,c) with the indexes that i want. e.g. imagine a 2x3 cell a and indexes f and c
a={('this'), ('is') ,('big');('he') ,('buys') ,('it')}
f=[1,1,2];
c=[1,2,3];
the result i want is b={('this'), ('is');('it'),('')}
  댓글 수: 3
Miguel Reina
Miguel Reina 2018년 2월 5일
the indexes are found following a 2x3 matrix said
b=[1 1 0;0 0 1]
in which 1 indicates the "correct" words following a criteria. so to find the indexes of those words i used
[c,f]=find(b==1);
Jan
Jan 2018년 2월 5일
Wouldn't it be easier to apply directly:
a(b)

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

답변 (1개)

Guillaume
Guillaume 2018년 2월 5일
Use ind2sub:
a(ind2sub(size(a), f, c))
The result will be 1x3 vector not an arbitrary sized array.

카테고리

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