I would like to make an equation to solve t when T_max is equal to 450
조회 수: 3 (최근 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!