converting cell array to matrix

2 visualizaciones (últimos 30 días)
Gopalakrishnan venkatesan
Gopalakrishnan venkatesan el 16 de Jun. de 2015
Comentada: Titus Edelhofer el 17 de Jun. de 2015
I have a cell array a = {'a' , 'b' , 'c' ,'d' , 'e'}
I need to convert a cell array to matix with ','(comma in between)
my answer should be a = a,b,c,d,e
how can i do it?
thanks a lot
  1 comentario
Guillaume
Guillaume el 16 de Jun. de 2015
While technically
a = 'a,b,c,d,e';
is a matrix. Calling it a char array or a string would make more sense.
It certainly begs the question: do you understand the differences (or lack of) between a matrix of numbers and a matrix of characters?

Iniciar sesión para comentar.

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 16 de Jun. de 2015
Editada: Andrei Bobrov el 16 de Jun. de 2015
a = {'a' , 'b' , 'c' ,'d' , 'e'};
a = sprintf('%c,',[a{:}]);
a = a(1:end-1);
  5 comentarios
Guillaume
Guillaume el 16 de Jun. de 2015
See my comment and look at the documentation of strjoin.
Titus Edelhofer
Titus Edelhofer el 17 de Jun. de 2015
@Guillaume: nothing wrong with strjoin except that I did not know it ;-)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Community Treasure Hunt

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

Start Hunting!

Translated by