writing a string
3 次查看(过去 30 天)
显示 更早的评论
A=3; B=17; how can I write a string: 'Panel A: range(3-17)'?
0 个评论
采纳的回答
更多回答(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
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!