Fill a vector with two vectors
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Eva Maria Leal Munoz
il 24 Nov 2020
Risposto: Eva Maria Leal Munoz
il 24 Nov 2020
Hello, I have two vectors, Ex: V1 = [3 8 6 7 ] and V2= [1 5 9 4 ]. With V1 and V2, I would like to create the following vector: Result = [ 8 5 6 9 7 4]. How can I do this?
Thanks in advance,
Eva
0 Commenti
Risposta accettata
Più risposte (2)
Nora Khaled
il 24 Nov 2020
v1 = [3 8 6 7];
v2 = [1 5 9 4];
r=[];
for i=2:1:length(v1)
r=[r v1(i) v2(i)];
end
r
0 Commenti
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!