how to take logarithm of a functional form in matlab?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Tanvir Kaisar
el 10 de Nov. de 2016
Comentada: Tanvir Kaisar
el 11 de Nov. de 2016
I have defined a function- >>f=inline('x*y','x','y') Now when i take log of this- >>logarithm=inline(log(f(x,y)),'x','y') Matlab simply shows log(x.*y) HOW CAN I GET THE ANSWER "logx+logy" instead?
0 comentarios
Respuesta aceptada
Walter Roberson
el 10 de Nov. de 2016
You might be able to do it with the symbolic toolbox, though I would have to experiment to figure out how messy it is.
You should not be writing any new inline() unless you need backwards compatibility with something already written. Anonymous functions have replaced inline()
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Function Creation en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!