how to arrange different matix as a contineus single matrix

I want to convert three matrix set into a single one. for example a=[1,2,3], b=[4,5,6], c=[8,9,10,12,13] the output i expect is
output1=[1,2,3,4,5,6,8,9,10,12,13]

 채택된 답변

Purushottama Rao
Purushottama Rao 2015년 5월 12일

0 개 추천

Output1=horzcat(a,b,c)

댓글 수: 3

Or
Output1 = [a, b, c];
which will call horzcat.
thanks alot rao, it was a great help
Pls accept the answer if you like it.

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

추가 답변 (0개)

카테고리

태그

질문:

2015년 5월 12일

댓글:

2015년 5월 13일

Community Treasure Hunt

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

Start Hunting!

Translated by