Finding maximal value in rows then aligning rows in order based on their increasing values
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Systematically Neural
le 8 Déc 2017
Réponse apportée : Matt J
le 8 Déc 2017
I have data that that is in rows of 300 data points. Each of these data points has a maximal value over the 300 data points. I have the following code:
d=data;
h=heatmap(d2,'ColorMap',jet,'ColorScaling','scaledrows');
grid off
I want to order the rows so that the max values are increasing order. So if maximal value happens at the 10th point of 300 then it should go before one where max value is happening at 20th out of 300. I have tried indexing with max, but not sure how to use that to order them how I want.
I attached an example matrix of data consisting of eight rows of 300.
Any help would be greatly appreciated!
0 commentaires
Réponse acceptée
Matt J
le 8 Déc 2017
[~,idx0]=max(data,[],2);
[~,idx1]=sort(idx0);
data_sorted=data(idx1,:);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Distribution Plots 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!