I would like to make an equation to solve t when T_max is equal to 450
1 回表示 (過去 30 日間)
古いコメントを表示
OC=[3/5;3/5*sqrt(3);0]
BC=[9/40*sqrt(3);27/40;9/20]
OB=OC+BC
R=OB
syms t
F=[0;0;t]
MO=cross(R,F)
OA=[0;1.2;0.9]
OAe=OA/norm(OA)
Max=dot(OAe,MO)*OAe
T_max=norm(Max)
0 件のコメント
回答 (2 件)
Roger Stafford
2016 年 4 月 13 日
編集済み: Roger Stafford
2016 年 4 月 13 日
It is simple division:
t = 450/dot(OAe,cross(R,[0;0;1])); (<-- Corrected)
0 件のコメント
sam0037
2016 年 4 月 13 日
Hi,
Appending these three commands to your code will do the magic:
eqn = T_max == 450;
res = solve(eqn,t);
val = double(res); %this is the desired value of t
Here are the documentation links for the same:
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!