Problem 2241. Compare two input matrices
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
Dyuman Joshi
on 9 May 2021
Test suite has been improved by adding new test cases.
Solution Comments
Show commentsProblem Recent Solvers360
Suggested Problems
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
12943 Solvers
-
1444 Solvers
-
Sum the elements in either diagonal of a square matrix
214 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
390 Solvers
-
5721 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!