append string to each element in string cell array

275 Ansichten (letzte 30 Tage)
Leor Greenberger
Leor Greenberger am 14 Okt. 2011
x_label =
'8' '16' '24' '32' '40'
How can I append ' GHz' to each element in the cell array? Thanks! Can it only be done with a for loop?

Akzeptierte Antwort

Fangjun Jiang
Fangjun Jiang am 14 Okt. 2011
x_label = {'8' '16' '24' '32' '40'};
strcat(x_label,'GHz')

Weitere Antworten (1)

Sean de Wolski
Sean de Wolski am 14 Okt. 2011
x_label = { '8' '16' '24' '32' '40'}
x_labelGHz = cellfun(@(c)[c 'GHz'],x_label,'uni',false)
One way
  3 Kommentare
Sean de Wolski
Sean de Wolski am 14 Okt. 2011
yes, cellfun is basically a for loop that does the function to each cell.
The @(c)[c 'GHz'] takes a cell, c, and concatenates it horizontally with 'GHz'. I agree Fangjun's method is better for this case, I don't think I've ever used strcat before. cellfun is more powerful for other things. Perhaps if you wanted the strings as column vectors:
@(c)[c 'GHz'].'
Sean de Wolski
Sean de Wolski am 14 Okt. 2011
And it's not an inline function but a function handle; significantly faster and in current times more common.

Melden Sie sich an, um zu kommentieren.

Kategorien

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

Community Treasure Hunt

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

Start Hunting!

Translated by