How can I make one vector out of two vectors with different lengths?

3 visualizzazioni (ultimi 30 giorni)
Is it possible to make one vector out of two vectors with different lengths?
A = [1 1 1 1]
B = [0 0 1 0 1 0]
--> C = [0 0 1 0 1 0 1 1 1 1]
Thank for your help!

Risposte (1)

Ive J
Ive J il 18 Dic 2020
A = [1 1 1 1]
B = [0 0 1 0 1 0]
C = [B, A];

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by