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!