inverse of log10
古いコメントを表示
Is there a MATLAB command that is the inverse of log10?
回答 (2 件)
Honglei Chen
2012 年 5 月 15 日
a = 10;
b = log10(a);
c = 10^b
Wayne King
2012 年 5 月 15 日
Just 10^(log10(x))
x = log10(1000);
10^x
1 件のコメント
x = log10([1 2 3 1000]);
10.^x %revised
10^x %original
カテゴリ
ヘルプ センター および File Exchange で Simulink Real-Time についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!