putting several matrices as one
조회 수: 1 (최근 30일)
이전 댓글 표시
i have got one matrix with 2 columns and another with 5. i want to put them togehter as one matrix with 7 columns. overall the rows are similar in all of them
댓글 수: 0
채택된 답변
per isakson
2017년 10월 10일
편집: per isakson
2017년 10월 10일
The matrices must have the same number of rows and have values of the same class.
len = 7;
A1 = ones( len, 2 );
A2 = 2*ones( len, 5 );
M = cat( 2, A1, A2 ); % or shorter [A1,A2]
whos M
returns
Name Size Bytes Class Attributes
M 7x7 392 double
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Function Creation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!