I want to include a variable in my figure title when I save to a directory.
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Sandra Cole
il 13 Apr 2022
Commentato: Sandra Cole
il 13 Apr 2022
This works:
saveas(figure(1),[pwd '/PRCC plots for submission 2/Final E monoton 2029.fig']);
I want to put this variable into the figure title:
TIMEend=2029;
Is this possible?
Thanks
0 Commenti
Risposta accettata
Più risposte (1)
Christopher McCausland
il 13 Apr 2022
Hi Sandra,
Yes this is possiable, you can either use strcat() to 'build' the title string first or just use title(), it'll look something like this;
plot(); %whatever you are plotting
hold on;
title('TIMEend =',TIMEend); % Create a string for the title and include the variable value
saveas(figure(1),[pwd '/PRCC plots for submission 2/Final E monoton 2029.fig']) % continue to save...
Let me know if this is what you are looking for,
Christopher
0 Commenti
Vedere anche
Categorie
Scopri di più su Title 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!