position of the element have small value
    5 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Anusha
 el 22 de Oct. de 2013
  
    
    
    
    
    Respondida: Andrei Bobrov
      
      
 el 22 de Oct. de 2013
             A= 
   3 4 5 6 7
   1 2 4 9 4
   5 3 0 7 6
   6 0 1 8 5
   2 9 8 1 3
find the position of min value in each column sore the position in the variable
for first coln min value is 1 now the position (1,2) p=1 q=2 like that next iteration take second column and find the position
0 comentarios
Respuesta aceptada
Más respuestas (1)
  David Sanchez
      
 el 22 de Oct. de 2013
         A= [
   3 4 5 6 7;
   1 2 4 9 4;
   5 3 0 7 6;
   6 0 1 8 5;
   2 9 8 1 3];
[C I] = min(A,[],1);
C is the array of minima.
I is an array with the positions of the minimum value in the columns of A.
Ver también
Categorías
				Más información sobre Operators and Elementary Operations 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!


