This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = magic(3);
y_correct = 9;
assert(isequal(elements_number_of_matrix(x),y_correct))
ans =
9
|
2 | Pass |
x = ones(4,5,6);
y_correct = 120;
assert(isequal(elements_number_of_matrix(x),y_correct))
ans =
120
|
3 | Pass |
x = rand(5);
y_correct = 25;
assert(isequal(elements_number_of_matrix(x),y_correct))
ans =
25
|
819 Solvers
401 Solvers
248 Solvers
327 Solvers
Flip the vector from right to left
2670 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!