フィルターのクリア

remove decimals from title when using sprintf

4 ビュー (過去 30 日間)
Joel
Joel 2023 年 4 月 11 日
回答済み: Les Beckham 2023 年 4 月 11 日
I have this to my figure
Q=2021; %year
plot(x,y)
title(sprintf('text %f',Q))
But the title is
text 2021.00000000
How do I remove the decimals?

採用された回答

Les Beckham
Les Beckham 2023 年 4 月 11 日
Q=2021; %year
x = 0:10;
y = x.^2;
plot(x,y)
grid on
title(sprintf('text %d',Q)) % <<< replace %f with %d

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeTitle についてさらに検索

製品


リリース

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by