displaying date as title of figure

5 visualizzazioni (ultimi 30 giorni)
AA
AA il 26 Ott 2017
Risposto: Fangjun Jiang il 26 Ott 2017
hi, i want to display a date as title of a figure.
caption = sprintf(' %.3f', datestr(q{:,1}(1,1)));
This q cell array contains a dateserial number. When I display it as datestr then I get random numbers but not the actual date. How can I change that?

Risposta accettata

Walter Roberson
Walter Roberson il 26 Ott 2017
caption = datestr(q{:,1}(1,1));
It is already text: you do not need to format it.

Più risposte (1)

Fangjun Jiang
Fangjun Jiang il 26 Ott 2017
The output of datestr() is already a string, so you don't need to use sprintf() anymore. Use datastr() directly.
If you still need to use sprintf(), then use '%s' instead of '%.3f'.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by