When I use the log function [log (x)] to log the value 616, I am getting the answer 6.4232. However, when I calculate it on windows excel or my calculator I get 2.789580712.
I'd like to know why I am getting a different answer on Matlab.

 採用された回答

Stephen23
Stephen23 2016 年 5 月 3 日
編集済み: Stephen23 2016 年 5 月 3 日

3 投票

The documentation tells us that in MATLAB log calculates the natural logarithm, and log10 the base ten logarithm.
>> log(616)
ans = 6.4232
>> log10(616)
ans = 2.7896
The MATLAB help is great: it tells us how MATLAB works. You should try using it.

1 件のコメント

John D'Errico
John D'Errico 2016 年 5 月 3 日
Oh, wait. You mean the help is there for us to read? Just think - all this time I've wasted, wondering what stuff does.

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

その他の回答 (1 件)

CAS
CAS 2016 年 5 月 3 日

0 投票

Thank you very much for your help!!!:)

カテゴリ

ヘルプ センター および File ExchangeStartup and Shutdown についてさらに検索

タグ

質問済み:

CAS
2016 年 5 月 3 日

回答済み:

CAS
2016 年 5 月 3 日

Community Treasure Hunt

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

Start Hunting!

Translated by