Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x(:,:,1) = [1 2 3];
x(:,:,2) = [4 5 6];
x(:,:,3) = [7 8 9];
y_correct = 1;
assert(isequal(three_d(x),y_correct))
s =
3
ans =
logical
1
y =
1
|
2 | Pass |
x(:,1) = [4 7 38];
x(:,2) = [42 45 6];
y_correct = 0;
assert(isequal(three_d(x),y_correct))
s =
2
y =
0
|
253 Solvers
260 Solvers
07 - Common functions and indexing 1
338 Solvers
Matlab Basics - Pick out parts of a vector
198 Solvers
Matrix of almost all zeros, except for main diagonal
152 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!