You are on page 1of 1

m=18;

h=8;
u=0.45;
g=9.81;
F=[200:225:250:275:300];
x=@(F) (u.*m.*g.*(h.^2 + F.^2).^(1/2))/(F+u.*h);
fplot(x,[0,100])
title('N sepanjang F')
xlabel('F')
ylabel('N')

You might also like