Problem 1070. Next Higher Power of B

|Given a number n and a base B greater than 1, return the lowest integer power of B that is greater than or equal to n.

Example:

    B = 4;
    n = 53;
    npb = nextpowb(B,n);

outputs

    npb = 3

See also: nextpow2

Solution Stats

65.94% Correct | 34.06% Incorrect
Last Solution submitted on Aug 18, 2023

Solution Comments

Show comments

Problem Recent Solvers141

Suggested Problems

More from this Author56

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!