Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 76;
y_correct = 112;
assert(isequal(maxit(x),y_correct))
y =
112
|
2 | Pass |
%%
x = 555;
y_correct = 992;
assert(isequal(maxit(x),y_correct))
y =
992
|
3 | Pass |
%%
x = 1000;
y_correct = 1008;
assert(isequal(maxit(x),y_correct))
y =
1008
|
4 | Pass |
%%
x = 10000000;
y_correct = 16711680;
assert(isequal(maxit(x),y_correct))
y =
16711680
|
How to find the position of an element in a vector without using the find function
2477 Solvers
Back to basics 19 - character types
225 Solvers
How many trades represent all the profit?
520 Solvers
5469 Solvers
2316 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!