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 = [4,3,6; 2,5,3; 8,2,6]
y_correct = 0;
assert(isequal(is_it_zero(x),y_correct))
x =
4 3 6
2 5 3
8 2 6
|
2 | Fail |
x = [1,2,3; 4,5,6; 7,8,9]
y_correct = 1;
assert(isequal(is_it_zero(x),y_correct))
x =
1 2 3
4 5 6
7 8 9
|
3 | Pass |
x = [9,2,0; 4,4,0; 7,8,0]
y_correct = 1;
assert(isequal(is_it_zero(x),y_correct))
x =
9 2 0
4 4 0
7 8 0
|
Compute a dot product of two vectors x and y
750 Solvers
Duplicate each element of a vector.
518 Solvers
07 - Common functions and indexing 5
314 Solvers
175 Solvers
177 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!