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))
|
Getting the absolute index from a matrix
211 Solvers
Set the array elements whose value is 13 to 0
935 Solvers
Create a Multiplication table matrix...
283 Solvers
583 Solvers
615 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!