inverse of log10
Mostrar comentarios más antiguos
Is there a MATLAB command that is the inverse of log10?
Respuestas (2)
Honglei Chen
el 15 de Mayo de 2012
a = 10;
b = log10(a);
c = 10^b
Wayne King
el 15 de Mayo de 2012
Just 10^(log10(x))
x = log10(1000);
10^x
1 comentario
x = log10([1 2 3 1000]);
10.^x %revised
10^x %original
Categorías
Más información sobre Simulink Real-Time en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!