Plot the Relative Error

조회 수: 14 (최근 30일)
Nathan Brannan
Nathan Brannan 2021년 3월 4일
답변: David Hill 2021년 3월 4일
I don't know what the relative error is or how to calculate it. I feel as if I'm missing something with part (a), but I don't know where to even begin with part (b).
V = [10 20 30 40 50 60 70 80];
F_D = [25 70 380 550 610 1220 830 1450];
plot(V,F_D)

채택된 답변

David Hill
David Hill 2021년 3월 4일
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)));

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by