Sorting matrix while removing zero values and keeping track of index at the same time.
    8 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    CalebJones
 el 11 de Feb. de 2020
  
    
    
    
    
    Respondida: CalebJones
 el 11 de Feb. de 2020
            This is after sorting but with zero values as well.
[a,ind] = sort(totalAmplitude);
bb = [a;ind]';
I want to eliminate the zero values along with its index value as well. 
I tried this but this is messing up my original index as well. The index very much needed for me. 
[total_amp_temp,index] = sort(nonzeros(totalAmplitude));
ccd = [total_amp_temp index];
I have attached MATFILE as well.
0 comentarios
Respuesta aceptada
Más respuestas (1)
Ver también
Categorías
				Más información sobre Matrices and Arrays 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!

