How to insert a variable and datetime array into a graph title?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Brianna Miranda
el 2 de Mzo. de 2022
Comentada: Star Strider
el 2 de Mzo. de 2022
I have a graph that I want to include the date&time it was made and the number of data stacks the plot contains on it. The number of stacks is a variable that changes depending on what I input for it. The title for the plot works when I use:
sgtitle([datestr(startTime)]
but I also want to add "Number of stacks: N" to the title.
I have this so far but it isn't working:
sgtitle('Recorded on: ', [datestr(startTime)],'Number of Stacks: ',N)
I want the title to look like this:
Recorded on: dategoeshere, Number of Stacks: N
0 comentarios
Respuesta aceptada
Star Strider
el 2 de Mzo. de 2022
2 comentarios
Steven Lord
el 2 de Mzo. de 2022
Or perhaps simpler than sprintf:
plot(1:10)
n = 5;
T = datetime('today');
title("This plot with n = " + n + ...
" was generated on " + string(T))
Más respuestas (0)
Ver también
Categorías
Más información sobre Line 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!