
How to add date and time in a plot by command in matlab 2012?
    7 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Deborah Johnson
 le 19 Mai 2022
  
    
    
    
    
    Commenté : Star Strider
      
      
 le 19 Mai 2022
            At my workplace, we have MatLab R2012a.  I have been asked to plot a graph and add the 'date and time' on the top or bottom of the graph - timestamp. How it can be done by using either the editor command or the graph.s title?
I have tried text(0.5,0.5, datestr(clock), 'HorizontalAlignment', 'left', 'VerticalAlignment','top') and the command is accepted but nothing shows up on the graph? 
Please help. Thanks.
1 commentaire
  Cris LaPierre
    
      
 le 19 Mai 2022
				There is nothing wrong with the code you have shared. Is there anything unique about your install? OS?

Réponse acceptée
  Star Strider
      
      
 le 19 Mai 2022
        I no longer have access to R2012a, so I cannot test this with it.  
The code you posted works correctly in R2022a, however R2012a may require a separate sprintf call — 
title(sprintf('%s', datestr(clock)))
See if that works.  
All of these work correctly in R2022a: 
text(0.5,0.5, datestr(clock), 'HorizontalAlignment', 'left', 'VerticalAlignment','top')
title(datestr(clock))
ylabel(sprintf('%s', datestr(clock)))
.
2 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Solver Outputs and Iterative Display dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



