V = [10 20 30 40 50 60 70 80];
v=10:.1:80;
f=@(x).2741*x.^1.9842;
F_D = [25 70 380 550 610 1220 830 1450];
plot(V,F_D,v,f(v));
figure;
plot(V,abs((f(V)-F_D)./f(V)));

Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!