inverse of log10

Respuestas (2)

Wayne King
Wayne King el 15 de Mayo de 2012

1 voto

Just 10^(log10(x))
x = log10(1000);
10^x

1 comentario

x = log10([1 2 3 1000]);
10.^x %revised
ans = 1×4
1 2 3 1000
10^x %original
Error using ^
Incorrect dimensions for raising a matrix to a power. Check that the matrix is square and the power is a scalar. To operate on each element of the matrix individually, use POWER (.^) for elementwise power.

Iniciar sesión para comentar.

Categorías

Más información sobre Simulink Real-Time en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 15 de Mayo de 2012

Comentada:

el 9 de Nov. de 2023

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by