How can I write multiple number (digit) in my title?

9 次查看(过去 30 天)
Hi! So, I have this mode array and I want to write this title -
mode = [1,2,3,4,5];
title(sprintf('Mode: %d',mode(1,1)));
But sometimes for other figures, I might need to show multiple modes. For example -
title(sprintf('Mode: %d, %d, %d',mode(1,1),mode(1,2),mode(1,3)));
Can anyone please tell me how can I show it without repeating the %d? or the mode(i,j)?
Say, one title might be "Mode: 1,2,3,4". How can I code it automatically so that I don't have to manually check the %d?
Thank you so much!

采纳的回答

Dave B
Dave B 2022-8-24
I think what you're saying is you don't want to compute how many %d's to include and just have all the value separated by commas?
How about:
mode = [1,2,3,4,5];
title("Mode: " + string(mode).join(", "))

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Title 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by