Sum all answers from structured array field

1 vue (au cours des 30 derniers jours)
BOB
BOB le 1 Nov 2017
Commenté : BOB le 1 Nov 2017
Hi,
I'm trying to sum all values from one field of a structured array:
(X(k(1:end)).NumberSamples)
ans =
3692
ans =
3420
ans =
2470
ans =
3382
I want to add these values together, however I can't use
sum(X(k(1:end)).NumberSamples)
Is there a way around this that sums the answers from the original input (X(k(1:end)).NumberSamples)?
Thanks

Réponse acceptée

Guillaume
Guillaume le 1 Nov 2017
Modifié(e) : Guillaume le 1 Nov 2017
Simply,
sum([X(k).NumberSamples])
Note the use of [] to convert the comma separated list returned by X(k).NumberSamples into a vector that can be summed.
  1 commentaire
BOB
BOB le 1 Nov 2017
Perfect, thank you for the fast response!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Structures 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