Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 10;
y_correct = 1;
assert(isequal(no_elements(x),y_correct))
|
2 | Pass |
x = [1 26 45 11;12 -5 -6 8;12 2 2 2];
y_correct = 12;
assert(isequal(no_elements(x),y_correct))
|
3 | Pass |
x = 0:25;
y_correct = 26;
assert(isequal(no_elements(x),y_correct))
|
4 | Pass |
x = [4 5 6];
y_correct = 3;
assert(isequal(no_elements(x),y_correct))
|
5 | Pass |
x = exp(2);
y_correct = 1;
assert(isequal(no_elements(x),y_correct))
|
6 | Pass |
x = [1:2 4 8 9];
y_correct = 5;
assert(isequal(no_elements(x),y_correct))
|
7 | Pass |
x = [4 5 6;7 89 7;1 2 3;4 5 6;4 5 6];
y_correct = 15;
assert(isequal(no_elements(x),y_correct))
|
Find common elements in matrix rows
1231 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
275 Solvers
286 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!