Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 1024;
b = 2;
y_correct = 10;
assert(isequal(logb(x,b),y_correct))
|
2 | Pass |
%%
x = 25;
b = 5;
y_correct = 2;
assert(isequal(logb(x,b),y_correct))
|
3 | Pass |
%%
x = 10000;
b = 10;
y_correct = 4;
assert(isequal(logb(x,b),y_correct))
|
1398 Solvers
376 Solvers
Getting the indices from a matrice
360 Solvers
412 Solvers
Check that number is whole number
1070 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!