Borrar filtros
Borrar filtros

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

5 visualizaciones (últimos 30 días)
Jason Nguyen
Jason Nguyen el 25 de Mayo de 2020
Respondida: Vemula Ramakrishna Reddy el 10 de Abr. de 2021
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));

Respuestas (2)

Vemula Ramakrishna Reddy
Vemula Ramakrishna Reddy el 10 de Abr. de 2021
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 el 25 de Mayo de 2020
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?

Categorías

Más información sobre Numerical Integration and Differential Equations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by