Create a function which will take 2 arguments as n and x, and return y, where, n^y >= abs(x). [ Similar to builtin "nextpow2" function]
e.g. nextpow(3, 20) will return 3 since 3^3 =27 > 20
Another example: nextpow(4, 16) will return 2, since 4^2 = 16
nextpow(2, 21) will return 5, since 2^5 = 32 > 21
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers90
Suggested Problems
-
Project Euler: Problem 1, Multiples of 3 and 5
3677 Solvers
-
Convert from Base 10 to base 5
281 Solvers
-
372 Solvers
-
920 Solvers
-
Replace every 3rd element in a vector with 4
266 Solvers
More from this Author25
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Interesting question!