Info
此问题已关闭。 请重新打开它进行编辑或回答。
How to find the values of d and t for the following inequalities in MATLAB. Where both f1 and f2 should be greater than 98697
1 次查看(过去 30 天)
显示 更早的评论
syms d t real;
assume(d>0);
assume(t>0);
f1 =406.90*((0.049*d)^4-0.04*(d-2*t)^4)/((10.35+(0.2074*d*t-0.2704*t^2)))
f2 =1627.60*((0.049*d)^4-0.04*(d-2*t)^4)/((10.35+(0.2074*d*t-0.2704*t^2)))
s = solve(f1,f2 >98697,d,t)
0 个评论
回答(0 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!