Problem 2350. What is Sum Of all elements of Matrix
Given the matrix x, return the sum of all elements of matrix.
Example:
Input x = [ 1 2 0 0 0 0 6 9 3 3 ] Output y is 24.
Input x = [ 1 NaN 0 0 0 0 6 9 3 3 ] Output y is NaN.
Solution Stats
Problem Comments
-
6 Comments
isequal(NaN, NaN) always return false. By definition Nans are not equal to each other. If you want test that a result is NaN, either use isnan, or use isequaln
The problem is unsolvable due to the second test.
isequalwithequalnans
I agree guys! something wrong
please use the function: isequalwithequalnans
;-)
Thanks for the suggestions. I fixed with isequalwithequalnans.
Solution Comments
Show commentsProblem Recent Solvers430
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15685 Solvers
-
2406 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1924 Solvers
-
Replace multiples of 5 with NaN
453 Solvers
-
Check that number is whole number
4861 Solvers
More from this Author6
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!