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))
|
2 | Pass |
A = 9:17;
A=reshape(A,[3 1 3]);
y_correct = 17;
assert(isequal(islargest(A),y_correct))
|
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))
|
Swap the first and last columns
12408 Solvers
Which values occur exactly three times?
3817 Solvers
Project Euler: Problem 8, Find largest product in a large string of numbers
315 Solvers
Find the maximum number of decimal places in a set of numbers
734 Solvers
Create an n-by-n null matrix and fill with ones certain positions
268 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!