writing a string

2 Ansichten (letzte 30 Tage)
joseph Frank
joseph Frank am 3 Jul. 2011
A=3; B=17; how can I write a string: 'Panel A: range(3-17)'?

Akzeptierte Antwort

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

Weitere Antworten (1)

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

Kategorien

Mehr zu Characters and Strings finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by