convert a matrix to column vector
이전 댓글 표시
I woule like to convert a matrix [31,6000] to a cloumn vector
31 rows and 6000 column
to one column vector
please advice
댓글 수: 2
Budoor Salem
2021년 2월 21일
편집: Budoor Salem
2021년 2월 21일
Walter Roberson
2021년 2월 21일
temp = repmat(x(:), 200,1);
x6 = temp(1:6000);
채택된 답변
추가 답변 (1개)
카테고리
도움말 센터 및 File Exchange에서 Data Types에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!