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 sum of all the numbers of the input vector
31951 Solvers
3892 Solvers
248 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
Program an exclusive OR operation with logical operators
639 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!