Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x = 1024;
b = 2;
y_correct = 10;
assert(isequal(logb(x,b),y_correct))
|
2 | Fail |
x = 25;
b = 5;
y_correct = 2;
assert(isequal(logb(x,b),y_correct))
|
3 | Fail |
x = 10000;
b = 10;
y_correct = 4;
assert(isequal(logb(x,b),y_correct))
|
9823 Solvers
1600 Solvers
Back to basics 21 - Matrix replicating
1052 Solvers
2314 Solvers
Is this triangle right-angled?
2394 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!