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))
|
2 | Pass |
x = ones(4,5,6);
y_correct = 120;
assert(isequal(elements_number_of_matrix(x),y_correct))
|
3 | Pass |
x = rand(5);
y_correct = 25;
assert(isequal(elements_number_of_matrix(x),y_correct))
|
405 Solvers
219 Solvers
Is this triangle right-angled?
2874 Solvers
Replace every 3rd element in a vector with 4
170 Solvers
78 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!