how to sum specific matrix elements?

2 views (last 30 days)
Hello everyone,
i have a 10x2 matrix. i want to sum all the elements in the first column while the second column has the negative values. for the example matrix below,
i want a b matrix that gives me 2+4+4 result. (2,4 and 4 are the first column numbers which has negative numbers in the second column)
A=[2 -3;4 -4;5 3;4 -2;5 4;1 3];
I hope you can help me, thank you all!!!

Accepted Answer

Image Analyst
Image Analyst on 20 Dec 2020
Try this:
rowsToSum = A(:, 2) < 0;
theSum = sum(A(rowsToSum, 1)); % Sum first column where second column is negative.
  1 Comment
anil hamzacebi
anil hamzacebi on 20 Dec 2020
It works exactly the way i need. Thank you for your help.

Sign in to comment.

More Answers (1)

VBBV
VBBV on 20 Dec 2020
Edited: VBBV on 20 Dec 2020
%true
Total=sum(A(A(:,2)<0))

Categories

Find more on Resizing and Reshaping Matrices in Help Center and File Exchange

Tags

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!