adding ones at the end of an array

can you help me to add ones at the end of 2*3 matrix to change it to 5*3 matrix. i want not zeros .

Answers (1)

k=randi(3,3)
k =
3 3 2
3 3 1
3 2 3
>> k=[k;ones(2,3)]
k =
3 3 2
3 3 1
3 2 3
1 1 1
1 1 1
>>

2 Comments

I'd recommend
k = [k; ones(2, size(k, 2))];
to make it work for k of any size. In general, never hardcode the size of matrices if you get ask matlab for it.
@Guillaume Thanks

Sign in to comment.

Categories

Asked:

on 1 Mar 2019

Commented:

on 1 Mar 2019

Community Treasure Hunt

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

Start Hunting!