Azzera filtri
Azzera filtri

another quick question about string read

2 visualizzazioni (ultimi 30 giorni)
gesNum = 6;
I want to get modelsq_6 other than modelsq_gesNum by using : sprintf('%s_%s', 'modelsq', 'gesNum'); I know this is wrong way, so how should I do?
  1 Commento
Jan
Jan il 13 Feb 2013
@UTA: The documentation of sprintf does explain this clearly, so please read again:
help sprintf
doc sprintf

Accedi per commentare.

Risposta accettata

José-Luis
José-Luis il 13 Feb 2013
Modificato: José-Luis il 13 Feb 2013
EDIT
sprintf('%s_%d', 'modelsq', gesNum);
  2 Commenti
UTA
UTA il 13 Feb 2013
it is not work, it only shows modelsq_
José-Luis
José-Luis il 13 Feb 2013
My bad, forgot to change the integer identifier, please try:
gesNum = 6;
sprintf('%s_%i', 'modelsq', gesNum);

Accedi per commentare.

Più risposte (1)

Azzi Abdelmalek
Azzi Abdelmalek il 13 Feb 2013
sprintf('modelsq_%d', gesNum);

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Tag

Non è stata ancora inserito alcun tag.

Community Treasure Hunt

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

Start Hunting!

Translated by