How to write Matlab code based on the Simpson’s 1/3 rule?
14 次查看(过去 30 天)
显示 更早的评论
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
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.
0 个评论
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?
0 个评论
另请参阅
类别
在 Help Center 和 File 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!