How to plot N subplots?
    7 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Ibro Tutic
      
 el 7 de Jun. de 2017
  
    
    
    
    
    Respondida: Akshay Kumar
      
 el 8 de Ag. de 2018
            I have a GUI where a user can select what plots they want from multiple possibilities. I am trying to find a way to robustly plot N plots on a subplot and have it look clean. I was thinking of finding the greatest common factors of the number, N? I'm not really sure how to go about this.
0 comentarios
Respuesta aceptada
  Walter Roberson
      
      
 el 7 de Jun. de 2017
        Make one of the dimensions
find(mod(N, 1 : floor(sqrt(N)))==0, 1, 'last')
and the other one N divided by that.
0 comentarios
Más respuestas (1)
Ver también
Categorías
				Más información sobre 2-D and 3-D Plots 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!


