Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to find the intersection points of these functions?

1 回表示 (過去 30 日間)
Maclane Keohane
Maclane Keohane 2018 年 9 月 18 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
g=-9.81;
x0=0;
y0=1;
v0=585;
q=10;
w=12;
e=14;
x1=0:100:1000;
y1=zeros(size(x1));
x2=1000:100:3014.85;
y2=((616/2014.85)*(x2-1000));
x=[x1 x2];
y=[y1 y2];
yq=(v0*sind(q))*((x-x0)/(v0*cosd(q)))+(1/2)*g*(((x-x0)/(v0*cosd(q))).^2.)+y0;
yw=(v0*sind(w))*((x-x0)/(v0*cosd(w)))+(1/2)*g*(((x-x0)/(v0*cosd(w))).^2.)+y0;
ye=(v0*sind(e))*((x-x0)/(v0*cosd(e)))+(1/2)*g*(((x-x0)/(v0*cosd(e))).^2.)+y0;
%How do I find the intersection points of y with yq,yw,and ye?

回答 (1 件)

KSSV
KSSV 2018 年 9 月 18 日

この質問は閉じられています。

Community Treasure Hunt

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

Start Hunting!

Translated by