Select the max & min values in multi index Matrix
Afficher commentaires plus anciens
I have a matrix with repetitive values in x and y
for examle:
161 436
161 437
161 523
161 523
162 281
162 457
162 678
I want to find max and min values for every x, for example in this case, I want to end up with two different matrix where I have minimum and maximum values. For examle
min matrix:
161 436
162 281
and max matrix will be
161 523
162 678
each x value is an index and I want to find the min and max value corresponding to that index seperately
Thank you :)
Réponses (1)
You can use splitapply:
m=[161 436
161 437
161 523
161 523
162 281
162 457
162 678];
groupID = findgroups(m(:, 1))
minMatrix = splitapply(@min, m, groupID)
maxMatrix = splitapply(@max, m, groupID)
2 commentaires
burcu bilgic
le 9 Nov 2021
Image Analyst
le 9 Nov 2021
Then could you please click the "Accept this answer" link? Thanks in advance. 🙂
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!