sort matrix by absolute value
25 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Poorva
el 29 de Mzo. de 2021
Comentada: Poorva
el 30 de Mzo. de 2021
How do I sort a matrix by absolute value and display its original value with +,- sign?
0 comentarios
Respuesta aceptada
Más respuestas (1)
Steven Lord
el 30 de Mzo. de 2021
Specify the 'ComparisonMethod' name-value pair argument.
rng default
A = randi([-10 10], 5, 5)
[values, locations] = sort(A(:), 'ComparisonMethod', 'abs');
[values.'; locations.']
2 comentarios
DGM
el 30 de Mzo. de 2021
Do you know about when that option was introduced? I'm guessing it was some time around 2018, but release notes are vague and I only know it's not in R2015b.
Ver también
Categorías
Más información sobre Shifting and Sorting Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!