how to insert value of array to other array

3 views (last 30 days)
hi guys
i have array
rr=[1,2,3,4,5]
i want to insert
y=[5,6,1]
on it to be
rr=[1,2,3,4,5,5,6,1]
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
the second question insert one element not array
for example
y=2;
rr=[1,2,3,4,5]
rr=[1,2,3,4,5,2]

Accepted Answer

Walter Roberson
Walter Roberson on 26 May 2020
horzcat(). [list of values] is also horzcat()
  2 Comments
Walter Roberson
Walter Roberson on 27 May 2020
y=2
rr=[1,2,3,4,5]
horzcat(rr,y)
y =
2
rr =
1 2 3 4 5
ans =
1 2 3 4 5 2
Note that this requires that your inputs are both row vectors -- or at least that whatever they are has the same number of rows.
If you are adding new rows to an array see vertcat(), which requires that whatever the inputs are has the same number of columns as each other.
If you do not know ahead of time whether the inputs are row vectors or column vectors or that they are the same as each other , then provided they are both vectors, you can use
newrr = rr;
newrr(end+length(y)) = y;
This will have the same orientation as rr has.

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices 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!