How can I double a vector and to the second part of it add a number?

7 views (last 30 days)
lets say i have a vector which is R=[1; 2; 3; 4; 5; 6; 7; 8; 9; 10] size 10x1
I want to double that vector in size and repeat the numbers but add 360 to them.
So my new R would look like this:
R=[1; 2; 3; 4; 5; 6; 7; 8; 9; 10; 360+1; 360+2; 360+3; 360+4; .....] size 20x1

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 14 Apr 2014
Edited: Azzi Abdelmalek on 14 Apr 2014
R=[1; 2; 3; 4; 5; 6; 7; 8; 9; 10]
R=[R;R+360]

More Answers (1)

Ruben Alfaro
Ruben Alfaro on 14 Apr 2014
GREAT, thanks for your help it is very much appreciated.

Categories

Find more on Multidimensional Arrays 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!