Convert 2D array rows to follow each other in row vector

조회 수: 8 (최근 30일)
Tamás Lengyel
Tamás Lengyel 2019년 2월 15일
댓글: Tamás Lengyel 2019년 2월 15일
Dear All,
I'd like to find an efficient way to convert my n x 2 matrix (e.g. A=[1 2; 3 4; 5 6; 7 8]) into a single vector where the output will have each pair of row elements from A followed by the next, i.e. the output will be B=[1 2 3 4 5 6 7 8].
Thank you so much!

채택된 답변

Walter Roberson
Walter Roberson 2019년 2월 15일
reshape(A.',1,[])

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품


릴리스

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by