inverse of log10
Show older comments
Is there a MATLAB command that is the inverse of log10?
Answers (2)
Honglei Chen
on 15 May 2012
a = 10;
b = log10(a);
c = 10^b
Wayne King
on 15 May 2012
Just 10^(log10(x))
x = log10(1000);
10^x
1 Comment
x = log10([1 2 3 1000]);
10.^x %revised
10^x %original
Categories
Find more on Electrical Systems in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!