フィルターのクリア

find x given y

3 ビュー (過去 30 日間)
Jarrod
Jarrod 2023 年 10 月 10 日
回答済み: Walter Roberson 2023 年 10 月 10 日
%W=3t^2+6t
%W=3t(t+2)
%(-(b)+sqrt(b^2-(4*a*c))/2*a)
%(-(b)-sqrt(b^2-(4*a*c))/2*a)
syms x
W=3*x.^2+6*x;
t1a=solve(3*x.^2+6*x == 3);
t2a=solve(3*x.^2+6*x == 9);
t3a=solve(3*x.^2+6*x == 45);
this is what i have right now but i only want the possitive x value

採用された回答

Walter Roberson
Walter Roberson 2023 年 10 月 10 日
syms x positive
W=3*x.^2+6*x;
t1a=solve(W == 3)
t1a = 
t2a=solve(W == 9)
t2a = 
1
t3a=solve(W == 45)
t3a = 
3

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeNumbers and Precision についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by