Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1;
y_correct = 1;
assert(isequal(count_rows(x),y_correct))
ans =
1
|
2 | Pass |
%%
x = [1 2 2; 15 3 4];
y_correct = 2;
assert(isequal(count_rows(x),y_correct))
ans =
2
|
3 | Pass |
%%
x = [3.1 7.2;5.4 2.2;7 2.1;5 8.6];
y_correct = 4;
assert(isequal(count_rows(x),y_correct))
ans =
4
|
Return a list sorted by number of occurrences
1504 Solvers
260 Solvers
Sum of diagonals elements of a matrix
166 Solvers
Matlab Basics II - Velocity of a particle
138 Solvers
Sum of the Multiplication of Vectors
202 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!