I have a quick and easy(I think!) question for you guys.

I have a variable, 'tauMax', that I want to round up to the nearest power of ten(1, 10, 100, 1000...). I am using the below expression to find the closest integer to the max value in the tau array. I am finding the max value because I am trying to calculate the power of ten that should be the x axis cutoff. In this cause, tauMax is equal to 756, so I want to have an expression that outputs either 1000, or 3(for 10^3).

tauMax = round(max(tau));

I'd really appreciate any help!

Thanks,

-Alex

link|improve this question

1  
You could also do this I believe based off of the number of digits. – norway28 Jul 20 '11 at 22:43
That's a great idea. Do you know what command i would use to find the number of digits in a given number? – Alex Nichols Jul 20 '11 at 22:47
@Alex Nichols - Since you're talking base 10 just use log10 (see my answer below). – b3. Jul 20 '11 at 22:49
Seems to be some different ways to do that: mathworks.co.jp/matlabcentral/answers/…, but the other method may be easier. – norway28 Jul 20 '11 at 22:50
feedback

2 Answers

up vote 8 down vote accepted

Since you're talking base 10, you could just use log10 to get the number of digits.

How about:

>> ceil(log10(756))

ans =

     3
link|improve this answer
That's what I wound up using, thank you sir! – Alex Nichols Jul 20 '11 at 22:57
feedback

I don't really do Matlab, but the usual way to do this in any language I do know is: take the logarithm base 10, then round up that number to the nearest integer, then compute 10 to the power of that number. In Python:

def ceil_power_of_10(n):
    exp = log(n, 10)
    exp = ceil(exp)
    return 10**exp

>>> print(ceil_power_of_10(1024))  # prints 1000.0
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.