How to write Matlab code based on the Simpson’s 1/3 rule?

조회 수: 64 (최근 30일)
Jason Nguyen
Jason Nguyen 2020년 5월 25일
답변: Vemula Ramakrishna Reddy 2021년 4월 10일
How to write Matlab code based on the Simpson’s 1/3 rule to integrate the function from the data?
This is what I have so far but Im getting an error :(
func_vec = [1.5 2 2 1.6363 1.2500 0.9565];
a = 0;
b = 2.5;
n = length(func_vec)-1;
h = (b-a)/n;
xi = a:h:b;
f_1sets = sum(func_data(2:2:end));
f_2sets = sum(func_data(3:2:end-2));
I = h/3*(func_vec(1) + 4*f_1sets + 2*f_2sets + func_vec(end));

답변 (2개)

Vemula Ramakrishna Reddy
Vemula Ramakrishna Reddy 2021년 4월 10일
The error is func_data should be func_vec
since you defined func_vec but not the func_data in your code.

Steven Lord
Steven Lord 2020년 5월 25일
When you ask for help understanding / correcting an error, please include the full and exact text of that error message (all the text displayed in red in the Command Window) to make it easier for us to understand the problem you're experiencing. Please add a comment (either on the original question or on this answer) with that information.
Nowhere in your code does a variable or function named func_data appear. Can you also include the definition of that variable or function in your comment?

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by