how can I simplify the following equation in MATLAB?
1 view (last 30 days)
Show older comments
sayan chakraborty
on 5 Jun 2016
Answered: Star Strider
on 5 Jun 2016
363980279322033920/3639802793220339 - (363980279322033920*exp(-2750*t)*(cosh((2^(1/2)*12600542294779661^(1/2)*t)/65536) + (90112000*2^(1/2)*12600542294779661^(1/2)*sinh((2^(1/2)*12600542294779661^(1/2)*t)/65536))/12600542294779661))/3639802793220339
0 Comments
Accepted Answer
Star Strider
on 5 Jun 2016
syms t
Eqn = 363980279322033920/3639802793220339 - (363980279322033920*exp(-2750*t)*(cosh((2^(1/2)*12600542294779661^(1/2)*t)/65536) + (90112000*2^(1/2)*12600542294779661^(1/2)*sinh((2^(1/2)*12600542294779661^(1/2)*t)/65536))/12600542294779661))/3639802793220339;
Result = vpa(simplify(Eqn, 'steps',10), 7)
Result =
100.0*exp(-2750.0*t)*(0.06764003*exp(-2422.31*t) - 1.06764*exp(2422.31*t)) + 100.0
0 Comments
More Answers (0)
See Also
Categories
Find more on Calculus in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!