How to Rearrange a Matrix
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mohammad Danial Bin Kamarul Zaman
le 15 Fév 2019
Commenté : Mohammad Danial Bin Kamarul Zaman
le 15 Fév 2019
I have a matrix that I would like to rearrange into a new matrix.
Below is a simplified problem that I'm experiencing:
Matrix 1:
Column 1(Elements) Column 2 (Stress)
1 3.023
2 43.48
3 4956
4 45687
5 135
6 444
7 7916
8 646
9 6468
10 777
11 6548
12 4979
New Matrix:
Column 1(Elements) Column 2 (Stress)
2 43.48
4 45687
6 444
7 7916
8 646
12 4979
admittedly, I feel a bit stuck about this. Rather than continuing, I’m wondering if I could lean on your expertise and insights to learn how to do it.
Thank you :)
2 commentaires
Stephen23
le 15 Fév 2019
@Mohammad Danial Bin Kamarul Zaman: what is the algorithm/rule/relationship that maps matrix 1 to matrix 2?
Réponse acceptée
Kevin Phung
le 15 Fév 2019
Modifié(e) : Kevin Phung
le 15 Fév 2019
% let M be your matrix of two columns
ind = [2 4 6 7 8 12]; % desired indices
new_M = M(ind,:)
3 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Stress and Strain 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!