How to correct figure size for plots?
    3 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Lauren-Xante Claassen
 il 15 Mag 2023
  
    
    
    
    
    Commentato: Lauren-Xante Claassen
 il 15 Mag 2023
            This is the outcome of my plot figure. where the graphs are small and all the wording overlaps:

This is what I would like it to look like:

How do I correct this? I have attached the code I am using for a 1030x9 Matrix called ConcreteData.
0 Commenti
Risposta accettata
  KSSV
      
      
 il 15 Mag 2023
        set(gcf, 'color','w','Position',[680, 250,1600,846]);  % change the dimenions of figure here 
t1 = tiledlayout(4,2,'TileSpacing','tight','Padding','compact') ;
for i = 1:8
    ax(i) = nexttile(t1);
    plot(rand(1,10)) ;
end
Più risposte (0)
Vedere anche
Categorie
				Scopri di più su Creating, Deleting, and Querying Graphics Objects in Help Center e File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
