Updating plot title for a few hundred figure using a loop

Hi, I have multiple figures for which I want to update my title from a variable (Datetime) in my workspace. Can you pleasehelp me figure it out.
Thankyou

回答 (1 件)

Siddharth Bhutiya
Siddharth Bhutiya 2021 年 2 月 8 日

0 投票

You can convert your datetime variable into a string and pass it as an input to the title command
x = 1:10;
dt = datetime;
plot(x);
title(string(dt));

カテゴリ

タグ

質問済み:

2021 年 2 月 5 日

回答済み:

2021 年 2 月 8 日

Community Treasure Hunt

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

Start Hunting!

Translated by