4 lines
89 B
Mathematica
4 lines
89 B
Mathematica
function order = determineOrderOfMagnitude(number)
|
|
order = floor(log10(number));
|
|
end
|