Effacer les filtres
Effacer les filtres

How to trim two vectors of differing lengths

6 vues (au cours des 30 derniers jours)
Todd Simon
Todd Simon le 18 Août 2016
Commenté : Todd Simon le 18 Août 2016
If I have two vectors of varying lengths or rows, how do I trim the end of the larger vector so that both vectors are now of the same length? For example, if I have the below:
A = [0
1
2]
B = [0
1
2
3
4]
What I want is something like:
A = [0
1
2]
B = [0
1
2]
Thanks for the help in advance.

Réponse acceptée

Azzi Abdelmalek
Azzi Abdelmalek le 18 Août 2016
n=min(numel(A),numel(B))
A=A(1:n)
B=B(1:n)
  1 commentaire
Todd Simon
Todd Simon le 18 Août 2016
Awesome. Thanks for the quick reply Azzi! Super simple!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays 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!

Translated by