Effacer les filtres
Effacer les filtres

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

3 vues (au cours des 30 derniers jours)
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 commentaire
Stephen23
Stephen23 le 21 Avr 2021
Modifié(e) : Stephen23 le 21 Avr 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.

Connectez-vous pour commenter.

Réponse acceptée

per isakson
per isakson le 21 Avr 2021
Modifié(e) : per isakson le 21 Avr 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"

Plus de réponses (0)

Catégories

En savoir plus sur Characters and Strings dans Help Center et File Exchange

Produits


Version

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by