How to change time in plot?
    7 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Krystian Wiewiór
 il 1 Giu 2018
  
    
    
    
    
    Risposto: Krystian Wiewiór
 il 1 Giu 2018
            Hello, How to create new value "10^2" instead of "10^4" in the plot? Thank you for answer, below I send a picture.
2 Commenti
  Ameer Hamza
      
      
 il 1 Giu 2018
				Do you just want to replace 10^4 with 10^2 or do you want to actually change your graph?
Risposta accettata
  Ameer Hamza
      
      
 il 1 Giu 2018
        
      Modificato: Ameer Hamza
      
      
 il 1 Giu 2018
  
      If you are just interested in scaling down the x-values then try these lines
ax = gca;
ax.Children.XData = ax.Children.XData/100;
Run this line after creating the original figure.
2 Commenti
  Ameer Hamza
      
      
 il 1 Giu 2018
				Yes, you can easily change the limit,
ax = gca;
ax.XLim = [0 100];
Più risposte (1)
Vedere anche
Categorie
				Scopri di più su Annotations 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!