The summation of elements between two numbers

1 view (last 30 days)
We have made a matrix with 7 rows and 18 columns with random elements between 10-100. From these we have solved that there are 21 elements with a value between 35 and 55.
Now we have to calculate the summation of these 21 elements. How do we do that?

Accepted Answer

David Hill
David Hill on 20 Nov 2022
yourMatrix=rand(7,18)*90+10;
s=sum(yourMatrix(yourMatrix>=35&yourMatrix<=55))
s = 1.3268e+03

More Answers (0)

Community Treasure Hunt

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

Start Hunting!