Undefined function 'Games' for input arguments of type 'double'. What am I doing wrong?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Walter Roberson
le 25 Sep 2013
You need to have stored the function Games in the file Games.m and it needs to be on your current MATLAB path.
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!