inverse of log10
70 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Is there a MATLAB command that is the inverse of log10?
0 Kommentare
Antworten (2)
Wayne King
am 15 Mai 2012
Just 10^(log10(x))
x = log10(1000);
10^x
1 Kommentar
Walter Roberson
am 9 Nov. 2023
x = log10([1 2 3 1000]);
10.^x %revised
10^x %original
Siehe auch
Kategorien
Mehr zu Electrical Systems finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!