solve equation for variable and how to get output as number not as substituted form

1 回表示 (過去 30 日間)
sita
sita 2015 年 1 月 27 日
コメント済み: sita 2015 年 1 月 28 日
Hi, I tried solving following code.solved for t and i want to substitutethat value back into equation. please help me
x1=rand(1); y1=rand(1); r = 10; v1= 2*rand(1); v2= 2*rand(1); sym t eq=(x1+t*v1)^2+(y1+t*v1)^2-r^2
solt=solve(eq,t); subsv=subs(eq,{t},{solt})
Thanks, Sita

採用された回答

A Jenkins
A Jenkins 2015 年 1 月 27 日
x1=rand(1);
y1=rand(1);
r = 10;
v1= 2*rand(1);
v2= 2*rand(1);
syms t
eq=(x1+t*v1)^2+(y1+t*v1)^2-r^2;
solt=solve(eq,t);
subsv=subs(eq,{t},{solt});
>> help vpa
vpa Variable precision arithmetic.
R = vpa(S) numerically evaluates each element of the double matrix
S using variable precision floating point arithmetic with D decimal
digit accuracy, where D is the current setting of DIGITS
>> vpa(subsv)
ans =
0
0

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeConversion Between Symbolic and Numeric についてさらに検索

タグ

タグが未入力です。

Community Treasure Hunt

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

Start Hunting!

Translated by