Please can you help me do the following. Where a k and B are positive constants
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
Please can you help me do the following. Where a k and B are positive constants
syms x a k B
solve(((2*a)/7)*x^(3.5)-2.5*a*k*x^(2.5)+B,x)
回答 (1 件)
Carlos
2014 年 3 月 25 日
If a, k and B are constants just asign the value they have and solve, there is no need to declare them as a syms variable.
>> syms x
>> a=1; k=1; B=1;
>> solve(((2*a)/7)*x^(3.5)-2.5*a*k*x^(2.5)+B,x)
ans =
8.7344769955854508972394619014664
0.71726877230987929915059388309187
8.7653865185792513553265174943496
- 0.55353695900302117825404059660525 + 0.38822741859907251304729067726326*i
0.19497081576573040239575395715129 + 0.67080407314445742463715094632198*i
0.19497081576573040239575395715129 - 0.67080407314445742463715094632198*i
- 0.55353695900302117825404059660525 - 0.38822741859907251304729067726326*i
2 件のコメント
Thirunavukkarasu
2014 年 3 月 25 日
Carlos
2014 年 3 月 25 日
What are the values for the constants ? Do you need to solve the system for different values of your constants?
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!