Info

This question is closed. Reopen it to edit or answer.

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 view (last 30 days)
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)

Answers (0)

This question is closed.

Community Treasure Hunt

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

Start Hunting!