How to expand matrix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Kamil Kacer
le 10 Déc 2020
Commenté : Ameer Hamza
le 10 Déc 2020
Hi I have matrix 1 row 12225 columns and I want to colerate in with matrix 1 row 12230 columns how to I round them to same length please
0 commentaires
Réponse acceptée
Ameer Hamza
le 10 Déc 2020
Modifié(e) : Ameer Hamza
le 10 Déc 2020
You can shorten the second vector by removing the extra elements
A; % 1x12225 vector
B; % 1x12230 vector
B_new = B(1:numel(A));
corrcoef(A, B_new)
2 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!