How to expand matrix
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Kamil Kacer
il 10 Dic 2020
Commentato: Ameer Hamza
il 10 Dic 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 Commenti
Risposta accettata
Ameer Hamza
il 10 Dic 2020
Modificato: Ameer Hamza
il 10 Dic 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Creating and Concatenating Matrices 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!