Sequential, row-wise reshape of an M–by–N matrix to form a 1–by–N vector

조회 수: 7 (최근 30일)
Dumb question. Let's say I have the following matrix:
A = [2 1
4 3
6 5
8 7
10 9];
Is there a way to use circshift(), some combinaton of circshift(), reshape(), transpose(), etc, or other set of functions to obtain the following.
A = somefun(A) % or combinaton of functions and operations
A =
2 1 4 3 6 5 8 7 10 9
I could easily obtain this result with with a for loop, but I am wondering if there is another means to go about this. Notice that the rows are sequentially 'stacked' along the N–dimension. The question could similarly be phrased in terms of columns to produce an M–by–1 column vector.
Edit: Accidental, premature submit.

채택된 답변

Stephen23
Stephen23 2020년 4월 22일
reshape(A.',1,[])

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by