error using log too many input arguments
2 ビュー (過去 30 日間)
古いコメントを表示
I'm having a small issue using log. I want to change the base of the log using the log(b, x) format but It shows the error to many input arguments here is my code: Xans1 = log(3, sol) -4;
0 件のコメント
回答 (2 件)
Walter Roberson
2018 年 3 月 11 日
You are looking at the documentation for the symbolic log(). The numeric log() does not accept two parameters.
0 件のコメント
David Goodmanson
2018 年 3 月 13 日
Hi Janrex,
Since
log_base_b(x) = log(x)/log(b)
you could write your own function for that, just don't call it 'log'.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Data Logging についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!