is it possible to create array of strings or char from struct of cell arrays

3 visualizaciones (últimos 30 días)
Apologies if I get some of the terminology wrong. I have a struct which is an array, with some cell values. So:
A(1).name='one', A(1).val=1, A(2).name='two', A(2).val=2.
What I'd like to do is create an array of strings from just the names. So, I'd like B=['one','two'].
if I do B=A(:).name I get B='onetwo'.
All help appreciated!
  1 comentario
Stephen23
Stephen23 el 21 de Abr. de 2021
Editada: Stephen23 el 21 de Abr. de 2021
These resources show one common approach:
"if I do B=A(:).name I get B='onetwo'."
A(1).name='one'; A(1).val=1; A(2).name='two'; A(2).val=2;
B=A(:).name
B = 'one'
I do not see how you could get 'onetwo' using that code.

Iniciar sesión para comentar.

Respuesta aceptada

per isakson
per isakson el 21 de Abr. de 2021
Editada: per isakson el 21 de Abr. de 2021
There are character arrays (See Text and Characters)
A(1).name='one'; A(1).val=1; A(2).name='two'; A(2).val=2;
{A.name}
ans = 1×2 cell array
{'one'} {'two'}
[A.name]
ans = 'onetwo'
and there are string arrays
A(1).name="one"; A(1).val=1; A(2).name="two"; A(2).val=2;
[A.name]
ans = 1×2 string array
"one" "two"

Más respuestas (0)

Categorías

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

Etiquetas

Productos


Versión

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by