How I can determine the intersection point of two projectile

2 ビュー (過去 30 日間)
Ashraf Zaman
Ashraf Zaman 2022 年 1 月 14 日
編集済み: Torsten 2022 年 1 月 14 日

採用された回答

Torsten
Torsten 2022 年 1 月 14 日
編集済み: Torsten 2022 年 1 月 14 日
Set x1 = x2 and y1 = y2 for an intersection point of the two curves.
You'll get
xinter= (tan(theta2)-tan(theta1))/(g/(2*(v2*cos(theta2))^2)-g/(2*(v1*cos(theta1))^2))
yinter= tan(theta1)*xinter- g*xinter^2/(2*(v1*cos(theta1))^2) - y0
as intersection point.
Of course, you will have to check whether xinter > 0, yinter > 0.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeInterpolation についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by