omment rearranger une matrce long en une seul ligne

1 view (last 30 days)
hello
i have a long matrix with over 1000 line and 2 column
exemple
A=[16 3
5 10
9 6
4 15
2 13
11 8
7 12
14 1]
and i want restrut my matrix like this
b=[ 16 3 5 10 9 6 4 15 2 13 11 8 7 12 14 1]
some help please

Accepted Answer

Dyuman Joshi
Dyuman Joshi on 30 Nov 2023
A=[16 3
5 10
9 6
4 15
2 13
11 8
7 12
14 1];
B = reshape(A.', 1, [])
ans = 1×16
16 3 5 10 9 6 4 15 2 13 11 8 7 12 14 1

More Answers (0)

Categories

Find more on Simulink in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!