How to take logarithm of a function in matlab?
    5 views (last 30 days)
  
       Show older comments
    
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 Comments
Answers (1)
  Walter Roberson
      
      
 on 10 Nov 2016
        logf = @(x, y) log(f(x, y))
2 Comments
  Walter Roberson
      
      
 on 10 Nov 2016
				That is a different question that you already asked and I already answered.
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
