Effacer les filtres
Effacer les filtres

extract field from a structure problem

2 vues (au cours des 30 derniers jours)
Yu Li
Yu Li le 15 Nov 2018
Modifié(e) : Stephen23 le 15 Nov 2018
Hi:
I need to extract the field 'P' from a structure, to form a new structure with all the value of P. but I the answer in link below:
does not work, it only keeps the last one of the structure.
my command is tmp=DP1(:).P
Thanks!
Yu
  1 commentaire
Stephen23
Stephen23 le 15 Nov 2018
Modifié(e) : Stephen23 le 15 Nov 2018
@Yu Li: your code is like this:
tmp = DP1(:).P
whereas the code in the thread you linked to is like this:
tmp = [DP1(:).P]
Do you notice the difference?

Connectez-vous pour commenter.

Réponse acceptée

Bruno Luong
Bruno Luong le 15 Nov 2018
depending on the content, if scalar
tmp=[DP1.P]
or if not
tmp={DP1.P}
  1 commentaire
Yu Li
Yu Li le 15 Nov 2018
Thank you, your answer works.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by