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
log10(see my answer below). – b3. Jul 20 '11 at 22:49