index info for CAT
조회 수: 2 (최근 30일)
이전 댓글 표시
I am concatenating vectors x1,x2,x3 using y=cat(2,x1,x2,x3). Each one of these vectors have different lengths. I need to keep track index information for each one of them. How can I do this without loops.
x1=[1 1 0 1]; x2=[1 0]; x3=[1 1 1];
y=cat(2,x1,x2,x3);
= [1 1 0 1 1 0 1 1 1]
index = [1 4;5 6;7 9]
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2014년 8월 11일
편집: Azzi Abdelmalek
2014년 8월 11일
index=reshape(cumsum([1 numel(x1)-1 1 numel(x2)-1 1 numel(x3)-1]),2,[])'
댓글 수: 1
Azzi Abdelmalek
2014년 8월 11일
Instead of using 3 variables x1,x2 and x3 you can use a single variable
x={[1 1 0 1];[1 0];[1 1 1]} % x is a cell array
you can get your three variables
x{1}
x{2}
x{3}
% Now you can get y
y=cell2mat(x')
out=reshape(cumsum([1 numel(x1)-1 1 numel(x2)-1 1 numel(x3)-1]),2,[])'
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Numeric Types에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!