how to integrate this function?

t=linespace(0:0.02:2001)
t=(0:dt:T)
B data has 2002 points
How to solve this equation in matlab, .

 Respuesta aceptada

Torsten
Torsten el 13 de Ag. de 2019

1 voto

T = ...;
dt = T/(numel(B)-1);
t = linspace(dt,T-dt,numel(B)-1);
dB = diff(B);
value = trapz(t,dB.^2)

1 comentario

Hein zaw
Hein zaw el 15 de Ag. de 2019
Hello, sorry for late reply. It's work. thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Programming en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 13 de Ag. de 2019

Comentada:

el 15 de Ag. de 2019

Community Treasure Hunt

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

Start Hunting!

Translated by