Log Differentiation in MATlab

7 views (last 30 days)
Hello,
I am doing differentiation via Symbolic Math tool. I have a fuction . How can I write this function and do my diffrentiation? Thanks in advanced.

Accepted Answer

Star Strider
Star Strider on 13 Sep 2020
You can convert to by multiplying it by .
So it would seem that the derivative would be:
created by:
syms x y(x) a
y = exp(x)*log(x)*log(a);
Dy = diff(y);
Ls = latex(simplify(Dy))
.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!