Check which input matrix has more elements. Return "1" if matrix A has more elements than matrix B. Otherwise return "0".
Example
A = [ 1 2 3 4 5; 5 9 3 0 9 ]
B = [ 1 2 4; 8 9 2 ]
CompareMatrix(A,B)
ans=1
Matrix A has 10 elements. Matrix B has 6. Ans=1.
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers374
Suggested Problems
-
Back to basics 13 - Input variables
389 Solvers
-
Find the largest value in the 3D matrix
1677 Solvers
-
Find out missing number from a vector of 9 elements
322 Solvers
-
Count decimal digits of a number
236 Solvers
-
Sum the 'edge' values of a matrix
404 Solvers
More from this Author2
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Test suite has been improved by adding new test cases.