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!