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))
|
Find the numeric mean of the prime numbers in a matrix.
6782 Solvers
3238 Solvers
Return elements unique to either input
550 Solvers
Determine the number of odd integers in a vector
435 Solvers
364 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!