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));
|
173 Solvers
Getting the absolute index from a matrix
178 Solvers
Remove the two elements next to NaN value
311 Solvers
151 Solvers
find the roots of a quadratic equation
125 Solvers