how to append my data?

Answers (1)

D = [1 1
2 1
2 2
2 3
3 4
4 5
5 6
6 6]
D = 8×2
1 1 2 1 2 2 2 3 3 4 4 5 5 6 6 6
D = reshape(D,[],1)
D = 16×1
1 2 2 2 3 4 5 6 1 1

1 Comment

Jan
Jan on 21 Dec 2022
Moved: VBBV on 28 Dec 2022
Or: D = D(:)

Sign in to comment.

Categories

Find more on Vehicle Dynamics Blockset in Help Center and File Exchange

Asked:

on 21 Dec 2022

Moved:

on 28 Dec 2022

Community Treasure Hunt

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

Start Hunting!