Convert Cell to String

I have a cell array:
x = {'red' 'blue' 'green'}
I need to convert it to a string (looking for another way besides char). So the output would be:
red
blue
green
Thanks, Amanda

1 comentario

Walter Roberson
Walter Roberson el 2 de Mayo de 2013
A single string with something (like a newline) between the parts? Or one string per cell entry? Is this for storing or for displaying? Could you indicate why using "char" is not desirable ?

Iniciar sesión para comentar.

 Respuesta aceptada

Cedric
Cedric el 2 de Mayo de 2013

1 voto

You could use something like:
s = sprintf('%s\n', x{:})

3 comentarios

Amanda
Amanda el 2 de Mayo de 2013
Thanks a lot again.
Walter Roberson
Walter Roberson el 2 de Mayo de 2013
Note that this would have newline characters between the parts. I am not sure that is what the poster wants.
Cedric
Cedric el 2 de Mayo de 2013
Editada: Cedric el 2 de Mayo de 2013
I assumed newline (and e.g. output to file) because of the way the question was formulated/structured, but this is a good point.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Characters and Strings en Centro de ayuda y File Exchange.

Preguntada:

el 2 de Mayo de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by