Plotting >500 curves verry slow since new plotting mode appeared?
    2 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Micke Malmström
      
 il 2 Nov 2020
  
    
    
    
    
    Risposto: Micke Malmström
      
 il 17 Feb 2021
            I have been plotting many 1000 curves (double with ~32000 points in each line) in matlab with regular "plot" function and have recently experienced that it is very slow. I have increased Java Heap memory to 4 GB but it doesnt help . 
I have a vage memory that the shift happened around the same time that the new plot features appeared, ie the tools in the right top corner. Could this be the reason? if so is there any way of forcing some plots to use the old method?
3 Commenti
Risposta accettata
Più risposte (1)
  Ameer Hamza
      
      
 il 2 Nov 2020
        Try disabling the toolbar
ax = axes();
ax.Toolbar = [];
Also, try disabling the interactions if you don't need it: https://www.mathworks.com/help/matlab/ref/disabledefaultinteractivity.html 
Vedere anche
Categorie
				Scopri di più su 2-D and 3-D Plots 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!


