How to take logarithm of a function in matlab?
1 回表示 (過去 30 日間)
古いコメントを表示
I have defined a function f=inline('x*y','x','y').That is f(x,y)=x*y.
How can i take log of this function?
0 件のコメント
回答 (1 件)
Walter Roberson
2016 年 11 月 10 日
logf = @(x, y) log(f(x, y))
2 件のコメント
Walter Roberson
2016 年 11 月 10 日
That is a different question that you already asked and I already answered.
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!