Converting symbolic exponential function into linear form

4 views (last 30 days)
Hi, below I have a code to solve symbolically differential equation.
My question is simple:
How to present the solution in linear form instead of exponential form. So basically what is the code to logarithm symbolically function on both sides of the solved equation?
syms A(t) k A0
R = -diff(A) == k*A;
cond = A(0) == A0;
A(t) = dsolve(R,cond)

Accepted Answer

Jyotsna Talluri
Jyotsna Talluri on 25 Aug 2019
Use 'simplify' function on applying log on both sides of equation
z= log(A(t));
logA = simplify(z , 'IgnoreAnalyticConstraints', true);

More Answers (1)

chemeng100
chemeng100 on 25 Aug 2019
Thank you for answer! It worked perfectly.

Community Treasure Hunt

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

Start Hunting!