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!