How do I create a vector by repeating a vector

2 views (last 30 days)
Onovo
Onovo on 28 Jul 2021
Commented: darova on 28 Jul 2021
Given a Vector A=[1; 2], I want to create a vector B, such that B=[1; 2; 1; 2] . Thanks

Answers (1)

KSSV
KSSV on 28 Jul 2021
Edited: KSSV on 28 Jul 2021
A = [1; 2] ;
B = repmat(A,2,1)
B = 4×1
1 2 1 2

Categories

Find more on Simulink in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!