Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 1:9;
A=reshape(A,[3 1 3]);
y_correct = 9;
assert(isequal(islargest(A),y_correct))
ans =
9
|
2 | Pass |
A = 9:17;
A=reshape(A,[3 1 3]);
y_correct = 17;
assert(isequal(islargest(A),y_correct))
ans =
17
|
3 | Pass |
A = [];
A(:,:,1) = magic(5);
A(:,:,1) = eye(5);
A(:,:,1) = 40*ones(5);
y_correct = 40;
assert(isequal(islargest(A),y_correct))
ans =
40
|
2500 Solvers
829 Solvers
It dseon't mettar waht oedrr the lrettes in a wrod are.
652 Solvers
07 - Common functions and indexing 6
348 Solvers
Pernicious Anniversary Problem
735 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!