proble in using "solve function
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
i am using solve function to equate two equations but the result are not the one that i want and also have problem with the format of the result . the exp. is
[L D] = solve(L*(D-d)==0.1386,L/(D-d)==3.6,'Real',true)
==============
the result is in fraction form or some times show empty matrix
1 件のコメント
Walter Roberson
2014 年 1 月 20 日
L = (9/250)*sqrt(385), D = (1/100)*sqrt(385)+d
L = -(9/250)*sqrt(385), D = -(1/100)*sqrt(385)+d
回答 (2 件)
Mischa Kim
2014 年 1 月 20 日
編集済み: Mischa Kim
2014 年 1 月 20 日
Have you assigned a numeric value for d ?
syms L D
d = 1;
[L D] = solve(L*(D-d)==0.1386,L/(D-d)==3.6,'Real',true)
L =
385^(1/2)/100 + 1
1 - 385^(1/2)/100
D =
(9*385^(1/2))/250
-(9*385^(1/2))/250
double(L(1))
ans =
1.196214168703486
1 件のコメント
vikas
2014 年 1 月 20 日
Walter Roberson
2014 年 1 月 20 日
0 投票
double(L), double(D)
3 件のコメント
Walter Roberson
2014 年 1 月 20 日
replace
syms L D
with
L = sym('L', 'd');
D = sym('D', 'd');
vikas
2014 年 1 月 22 日
Walter Roberson
2014 年 1 月 22 日
S = solve(L*(D-d)-Aw,L/(D-d)-3.6,'Real',true);
S.D
S.L
and if appropriate,
double(S.D)
double(S.L)
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!