Codigo de Matlab
Codigo de Matlab
Codigo de Matlab
% Entrada de datos
Empezar = input('presiones enter ');
v0 = input('Ingrese la velocidad inicial v0 (m/s): ');
theta_deg = input('Ingrese el ángulo de lanzamiento θ (grados): ');
y0 = input('Ingrese la altura inicial y0 (m): ');
1
Distancia máxima en x: 33.10 metros
% Graficar la trayectoria
figure;
plot(x, y, 'b', 'LineWidth', 2);
grid on;
xlabel('Distancia horizontal x (m)');
ylabel('Altura y (m)');
title('Trayectoria de un Tiro Parabólico');
hold on;
% Añadir anotaciones
text(x_max, y_max, sprintf(' (%.2f, %.2f)', x_max, y_max),
'VerticalAlignment', 'bottom');
hold off;
2
3