Solving an equation with rational exponents
显示 更早的评论
Im on the last step of my program and cannot seem to solve the final equation using the matlab solver. Here's the part of the code:
AR = 8
lambda = .35
tc_bar = .128
K_w = 1.01
n = 3.75
sweep = 35
ws_to = 141
syms x
w_wc = (.00945 * AR^.8 * (1+lambda)^.25 * K_w * n^.5)/(tc_bar^.4 * cosd(sweep) * ws_to^.695)
w_w = w_wc*x^1.195
w_fus = 2235*(x)^.235
w_lg = .04*(x)
w_np = .0208*(x)
w_wts = 1.1967*w_w
w_pp = .1046*(x)
w_f = .4007*(x)
w_pl = 71125
w_fe = 38740 + .035*(x)
eqn = w_w + w_fus + w_lg + w_np + w_wts + w_pp + w_f + w_pl + w_fe - x
w_to = solve(eqn,x,'Real', true)
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Calculus 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!