how can I simplify the following equation in MATLAB?

3 次查看(过去 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

采纳的回答

Star Strider
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 个)

类别

Help CenterFile Exchange 中查找有关 Symbolic Math Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by