Creating a matrix with repeating the same numbers.

Hi, i am back with one more question.
If 't' is any variable, let's keep t=10
i need a matrix
A=[1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11]
if t=11, i need
A=[1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 11 12]
Any help will be appreciated. this is because of my project.

 Accepted Answer

dpb
dpb on 28 Oct 2014
Edited: dpb on 29 Oct 2014
Not a lot of work there...
v=repmat([2:t],2,1);
A=[1 v(:).' t+1];

4 Comments

i received this error.
">> v=repmat([2:t],2,1); A=[1 v(:) t+1].'; Error using horzcat Dimensions of matrices being concatenated are not consistent."
Thanks for your effort. any help will be appreciated.
dpb
dpb on 29 Oct 2014
Edited: dpb on 29 Oct 2014
misplaced the .' as (:) returns column vector...amended.
Looks like Roger S was already by...

Sign in to comment.

More Answers (0)

Categories

Asked:

on 28 Oct 2014

Commented:

dpb
on 2 Nov 2014

Community Treasure Hunt

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

Start Hunting!