how to merge two vectors
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
A= [ 0.567 6.345 1.789 0.678 0.4678] B= [0 0 0 0 0 0 0 ]
result will be
C= [0.567 6.345 1.789 0.678 0.4678 0 0]
0 commentaires
Réponse acceptée
Mischa Kim
le 14 Fév 2014
Modifié(e) : Mischa Kim
le 14 Fév 2014
How about:
C = B + [A zeros(1,length(B)-length(A))]
assuming that by merge you mean add-merge. If it's just about adjusting the size of the vector, then use
C = [A zeros(1,length(B)-length(A))]
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Standard File Formats dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!