I solved my problem this is what my code looks like for anyone needing future help
clc;
clear;
load 'NameOfTxtFile.txt';
g = Gravity;
v0 = initial Velocity;
theta = Launch Angle from positive X-axis;
y0 = initial Height;
t = NameOfTxtFile(1,:);
x = v0*cos(theta)*t;
y = y0 + v0*sin(theta)-(1/2)*g*t.^2;
plot(t, x, 'color', 'LineWidth', linewidth)
hold on
plot(t, y, 'color', 'LineWidth', linewidth)
