writing a string

2 visualizaciones (últimos 30 días)
joseph Frank
joseph Frank el 3 de Jul. de 2011
A=3; B=17; how can I write a string: 'Panel A: range(3-17)'?

Respuesta aceptada

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

Más respuestas (1)

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

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by