How to display value of particular iteration in a loop

26 次查看(过去 30 天)
I am having a slight problem, I'd like to find a relative error without knowing the analytical solution. I have an equation where i need to find the value of F using composite mid rule when the relative error is less than 1%. Here is my code so far: The equation is F= integral (from 0 to 30) of (200*(z(n)/(5+z(n)))*exp((-2*z(n))/30))dz :
clc
clear all
a=0;
b=30;
s=1000;
dx=(b-a)/s;
z=zeros(1,s);
for n=1:s
z(n)=a+dx/2+(n-1)*dx;
F=0;
for n=1:s
F=F+dx*(200*(z(n)/(5+z(n)))*exp((-2*z(n))/30));
end
sprintf('%6.2f',F)
  6 个评论
Piotr Haciuk
Piotr Haciuk 2018-8-14
How can i find the relative error? the answers i wrote i should expect. When you change the value of s for 100 i get the answer 1480.72, for 200 i get the answer 1480.61, for s=1000 i get 1480.57, but when running it with s=1000 when i want to take the value for n=100 it doesnt give me same answer as for s=100
Piotr Haciuk
Piotr Haciuk 2018-8-14
Also, at which iteration the relative error of the si=olution is less than 1%

请先登录,再进行评论。

回答(1 个)

Alberto Mora
Alberto Mora 2018-8-14
Maybe you can use this piece of code inside the for loop:
if n==desired_iteration
disp('This is the desired iteration!');
disp(['The result at ',num2str(n),' iteration is ',num2str(result)]);
end
  6 个评论
Torsten
Torsten 2018-8-14
As you can see from the answer provided in your textbook, the authors seem to define the relative error as
|F_(2*n)-F_n|/|F_n|
So simply calculate F for n and 2*n and evaluate the expression above. If it is less than 0.01, you are done. Otherwise you will have to increase n and repeat the procedure.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by