writing a string
显示 更早的评论
A=3; B=17; how can I write a string: 'Panel A: range(3-17)'?
采纳的回答
更多回答(1 个)
per isakson
2011-7-3
I prefer
sprintf( 'Panel A: range(%u-%u)', A, B )
because I make fewer mistakes using that style
- per
类别
在 帮助中心 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!