Effacer les filtres
Effacer les filtres

sum of individual column values using logical operators

5 vues (au cours des 30 derniers jours)
Usman Mussadiq
Usman Mussadiq le 23 Mar 2020
Commenté : Usman Mussadiq le 23 Mar 2020
x=[2 1 ;-1 1 ;-1 2 ;1 -1 ;5 -1 ]
ind = x(:,2)<0
C = abs(sum(x(ind)))
ind = x(:,2)>0
D= abs(sum(x(ind)))
here, i need only sum of all rows and second column logical values, while it gives the whole if i remove (:,2) and answer will be not appropriate when i add this one. please guide me
  2 commentaires
Walter Roberson
Walter Roberson le 23 Mar 2020
CC = abs(sum(x(ind, 2)))
Usman Mussadiq
Usman Mussadiq le 23 Mar 2020
Thanks alot, your contribution means alot to me.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by