Info

This question is closed. Reopen it to edit or answer.

I have n matrix and i want to put them in 1 matrix, you can say that i have sub arrays and want to put them in one

1 view (last 30 days)
x =[10.2000;13.7200;15.4300;14.3700;15.0000;15.0200;15.1200;15.2400;15.2000;15.2800;13.7800;15.6700;15.6700;15.9800;16.5000;16.8700;17.2600;17.2800;17.8700;19.1300];
y = [25.9300;45.8700;56.2000;58.6000;63.3600;46.3500;68.9900;62.9100;58.1300;59.7900;56.2000;66.1600;62.1800;57.0100;65.6200;65.0300;66.7400;73.3800;82.8700;95.7100];
I wanna put them in one matrix

Answers (2)

Azzi Abdelmalek
Azzi Abdelmalek on 16 May 2014
Edited: Azzi Abdelmalek on 16 May 2014

Andrei Bobrov
Andrei Bobrov on 16 May 2014
out = [x, y]

Community Treasure Hunt

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

Start Hunting!