breaking a large table into smaller one

조회 수: 1 (최근 30일)
PRAVEEN GUPTA
PRAVEEN GUPTA 2019년 8월 12일
댓글: madhan ravi 2019년 8월 13일
i have a table
3 10 1
2 6 2
3 10 1
4 3 3
5 9 4
2 6 2
1 9 5
11 1 6
2 6 2
1 9 5
and i have an array in which position is given to break the table from that part
X=[2,4,6,7]
how can i do this such that i get all the tables in output
thank you in advance

채택된 답변

madhan ravi
madhan ravi 2019년 8월 12일
ix = diff([0,X,size(x,1)]); % x your table
Wanted = mat2cell(x,ix)
  댓글 수: 3
PRAVEEN GUPTA
PRAVEEN GUPTA 2019년 8월 12일
but how will i get the output i.e. 4 different tables
madhan ravi
madhan ravi 2019년 8월 13일
Each cell contains table.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by