The summation of elements between two numbers

3 次查看(过去 30 天)
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?

采纳的回答

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

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by