How do I solve using centered finite difference formula?

조회 수: 14 (최근 30일)
Mohd Aniq Akmal Maludin
Mohd Aniq Akmal Maludin 2017년 12월 28일
편집: Philipp Doblhofer 2017년 12월 30일
%Boundary conditons
y(0) = 1;
y(5) = 6;
h = 2 %Step size
Centered difference formula;
d2y = (y(i+1) - 2y(i) + y(i-1)) / h^2;
dy = (y(i+1) - y(i-1))/2*h;
for i = 2:4
r(i+1) = r(i) + h;
r(i)*(d2y) + 3*(dy)+10*r(i) = 0
end
for i = 1:5
fprintf('%7.3f %10.3f \n', r(i), y(i)
end
I am expecting the program to print the value of y(i). But I can't run the program.
  댓글 수: 3
Mohd Aniq Akmal Maludin
Mohd Aniq Akmal Maludin 2017년 12월 30일
Hello Phillip,
I am trying to calculate the value of y(2), y(3) and y(4) based on the equation in the for-loop.
Philipp Doblhofer
Philipp Doblhofer 2017년 12월 30일
편집: Philipp Doblhofer 2017년 12월 30일
Hello,
You have to do two steps:
1) Calculate dy and d2y for all values of i (1 to 4). The result should be a vector, not a scalar value (like your sample code would suggest)
2) For each i-value you have a system of linear equations. You have to solve them. (y(i) = ...)

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differentiation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by