Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1024;
b = 2;
y_correct = 10;
assert(isequal(logb(x,b),y_correct))
y =
10
|
2 | Pass |
x = 25;
b = 5;
y_correct = 2;
assert(isequal(logb(x,b),y_correct))
y =
2
|
3 | Pass |
x = 10000;
b = 10;
y_correct = 4;
assert(isequal(logb(x,b),y_correct))
y =
4
|
19336 Solvers
1421 Solvers
Check to see if a Sudoku Puzzle is Solved
279 Solvers
Set the array elements whose value is 13 to 0
940 Solvers
286 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!