how can I simplify the following equation in MATLAB?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
Star Strider
2016-6-5
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!