Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 20;
n = 3;
y_correct = 3;
assert(isequal(nextpow(n,x),y_correct));
|
2 | Pass |
x = 16;
n = 4;
y_correct = 2;
assert(isequal(nextpow(n,x),y_correct));
|
3 | Pass |
x = 81;
n = 8;
y_correct = 3;
assert(isequal(nextpow(n,x),y_correct));
|
4 | Pass |
x = 0;
n = 1;
y_correct = 0;
assert(isequal(nextpow(n,x),y_correct));
|
5 | Pass |
x = -32;
n = 2;
y_correct = 5;
assert(isequal(nextpow(n,x),y_correct));
|
6 | Pass |
x = -100;
n = 10;
y_correct = 2;
assert(isequal(nextpow(n,x),y_correct));
|
819 Solvers
381 Solvers
250 Solvers
Create an n-by-n null matrix and fill with ones certain positions
268 Solvers
249 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!