I figured it out. If anyone was wandering I created another function physics with an end after all the full functions were inputed. This allowed me to call the function physics. I then can call each function within the function for an answer. Probably not the best way to do it but it worked for now.
function physics
function [] = gravitationalForce(m1,m2,d)
%{ m1 = mass 1,m2 = mass 2,d = distance%}
G = 6.672 * 10^11;
syms F
F = (G*m1*m2/(d^2));
display(F)
end
function [] = velocityCalc(u,a,s)
%{u = velocity,a = acceleration,s = distance traveled,%}
disp('V^2 =')
v = (u^2 + (2*a*s));
disp(v)
end
function [] = distanceTraveled(u,a,t)
%{u = velocity,a = acceleration,t = time%}
syms s
s = (u*t)+1/2*a*t^2;
display(s)
end
end