add character cells arrays
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
we have a character cell [d d d d] and [d -d d -d]. how can we get [d+d d-d d+d d-d].
0 comentarios
Respuestas (1)
Walter Roberson
el 23 de Nov. de 2016
first = {'d', 'd', 'd', 'd'};
second = {'d', '-d', 'd', '-d'};
result = regexprep(strcat(first(:), {'+'}, second(:)), '+-', '-').' ;
0 comentarios
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!