フィルターのクリア

how to use matlab to convert some value into dB and vise versa

9 ビュー (過去 30 日間)
Amina El Banna
Amina El Banna 2014 年 4 月 28 日
コメント済み: Sunil Kumar Yadav 2014 年 4 月 28 日
if A = 10*log10(K)for example how to perform the following on MATLAB K = inverse log(A/10)

回答 (2 件)

Mischa Kim
Mischa Kim 2014 年 4 月 28 日
Amina, use
K = 10^(A/10)

Sunil Kumar Yadav
Sunil Kumar Yadav 2014 年 4 月 28 日
Amina use --->log10 command
Common (base 10) logarithm
so your expression become
A = 10*log10(K)
  1 件のコメント
Sunil Kumar Yadav
Sunil Kumar Yadav 2014 年 4 月 28 日
use "log" for natural log and "log10" for log to the base 10 .Taking antilog of natural log use "exp(value)" and for antilog of base to 10 use 10.^value
log(2)
ans = 0.6931
exp(ans)
ans = 2
log10(pi)
ans = 0.4971
10.^ans
ans = 3.1416

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeArgument Definitions についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by