Undefined function 'Games' for input arguments of type 'double'. What am I doing wrong?
조회 수: 1 (최근 30일)
이전 댓글 표시
So I'm supposed to describe a function and I'm getting it all wrong. Can anyone see the problem?
function file.
function y=Games(x,theta)
t=theta*pi/180;
v0=10; y0=1.85; g=9.81;
a=g/(2*v0^2*cos(t)^2);
b=v0^2*sin(2*t)/(2*g);
c=v0^2*sin(t)^2/(2*g);
y=y0-a*(x-b).^2+c;
Script file
x=linspace(0,14);
plot([0 14],[0 0],'green'), hold on
plot(x,Games(x,15)), text(6.4,1.6,'15^o')
plot(x,Games(x,30)), text(6.4,3.2,'30^o')
plot(x,Games(x,45)), text(6.4,4.6,'45^o'), hold off
title('games with v_0=10 m/s and diff \theta')
xlabel('x'), ylabel('y(x)')
axis equal, axis([0 14 -2 6])
댓글 수: 0
채택된 답변
Walter Roberson
2013년 9월 25일
You need to have stored the function Games in the file Games.m and it needs to be on your current MATLAB path.
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!