writing a string

3 次查看(过去 30 天)
joseph Frank
joseph Frank 2011-7-3
A=3; B=17; how can I write a string: 'Panel A: range(3-17)'?

采纳的回答

the cyclist
the cyclist 2011-7-3
['Panel A: range(',num2str(A)','-',num2str(B),')']

更多回答(1 个)

per isakson
per isakson 2011-7-3
I prefer
sprintf( 'Panel A: range(%u-%u)', A, B )
because I make fewer mistakes using that style
- per

类别

Help CenterFile Exchange 中查找有关 Characters and Strings 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by