Matrix Manipulation Image Processing
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Jes
el 27 de Mayo de 2015
Comentada: Walter Roberson
el 6 de Ag. de 2015
I have a matrix of 100 rows and 2 columns. How to sort the first column of the matrix and write the corresponding second column elements. Please help me. Its Urgent.Thanks in Advance
Respuesta aceptada
Andrei Bobrov
el 27 de Mayo de 2015
A = rand(100,2); % your matrix
[~,ii] = sort(A(:,1));
out = A(ii,:);
Más respuestas (1)
Ver también
Categorías
Más información sobre Image Processing Toolbox en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!