dear all:I have a 6* 3 matrix. I wanna choose 4rows randomly. how can I selecete all array in a rows randomly without replacement?
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    fariba amini
 el 27 de Jul. de 2016
  
    
    
    
    
    Comentada: fariba amini
 el 27 de Jul. de 2016
            for example:
A=[1 2 3;2 3 5;6 4 1;8 6 0;2 4 1;1 4 7;8 4 2];
and the answer is:
[1 2 3;6 4 1;8 6 0;8 4 2];
0 comentarios
Respuesta aceptada
  Azzi Abdelmalek
      
      
 el 27 de Jul. de 2016
        
      Editada: Azzi Abdelmalek
      
      
 el 27 de Jul. de 2016
  
      A=[1 2 3;2 3 5;6 4 1;8 6 0;2 4 1;1 4 7;8 4 2]
B=A(randperm(6,4),:)
4 comentarios
  Azzi Abdelmalek
      
      
 el 27 de Jul. de 2016
				
      Editada: Azzi Abdelmalek
      
      
 el 27 de Jul. de 2016
  
			idx=sort(randperm(6,4))
B=A(idx,:)
Más respuestas (0)
Ver también
Categorías
				Más información sobre Get Started with MATLAB 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!

