Combining multiple vectors into 1

조회 수: 96 (최근 30일)
soloby
soloby 2015년 6월 15일
답변: Ariunbolor Purvee 2018년 8월 22일
if I had 3 vectors
x_lower = 1x100;
x_mid = 1x1;
x_upper = 1x100;
and I want to combine the 3 vectors into 1 vector, say,
x_final = 1x201;

채택된 답변

Guillaume
Guillaume 2015년 6월 15일
I'd recommend you follow the introductory tutorials in the doc, as it's a very basic operation:
x_final = [x_lower, x_mid, x_upper]

추가 답변 (1개)

Ariunbolor Purvee
Ariunbolor Purvee 2018년 8월 22일
x_final = [x_lower x_mid x_upper]

카테고리

Help CenterFile Exchange에서 Point Cloud Processing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by