How to append elements in a vector one by one

I'm given two vector and i'm supposed to append the elements of the second matrix to the first matrix one by one, i can do this together but i cant seem to do it one by one, am i supposed to use a for loop somewhere?
%define vector A
A = [1 2 4] ;
%define vector B
B = [5 6 7] ;
%append B to A
A = [A,B]

답변 (1개)

madhan ravi
madhan ravi 2019년 3월 21일

0 개 추천

No loop is needed: Vertically concatenate the two vectors and use reshape.

댓글 수: 1

Try the suggested answer if it doesn’t do what you want , upload what you have tried.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2019년 3월 21일

댓글:

2019년 3월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by