sum of array in structure.

3 vues (au cours des 30 derniers jours)
Pramit Biswas
Pramit Biswas le 3 Jan 2018
Commenté : Elias Gule le 16 Jan 2018
uC = zeros(1,length(X));
for loop1 = 1:length(X)
uC(loop1) = sum(X(loop1).Y);
end
Any other/proper/quick way to do this? (Note: length of all X.Y is not same.)

Réponse acceptée

Elias Gule
Elias Gule le 3 Jan 2018
try this.
uC = arrayfun(@(v) sum(v.Y),x)
  4 commentaires
Pramit Biswas
Pramit Biswas le 3 Jan 2018
oops!!! Is this function only to reduce code? Any other ways?
Elias Gule
Elias Gule le 16 Jan 2018
Yep!

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