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))
y =
9
|
2 | Pass |
x = ones(4,5,6);
y_correct = 120;
assert(isequal(elements_number_of_matrix(x),y_correct))
y =
120
|
3 | Pass |
x = rand(5);
y_correct = 25;
assert(isequal(elements_number_of_matrix(x),y_correct))
y =
25
|
244 Solvers
Get the length of a given vector
1375 Solvers
Convert a vector into a number
442 Solvers
Calculate the area of a triangle between three points
280 Solvers
186 Solvers