Effacer les filtres
Effacer les filtres

integral of the squared error

2 vues (au cours des 30 derniers jours)
dab483
dab483 le 7 Déc 2011
does anyone knows how can i code using matlab the integral of the squared error from time 0 to time=T.
Let say i have an error. e.

Réponses (1)

Andrei Caragea
Andrei Caragea le 7 Déc 2011
Let F be your initial function of time (as an example, let's say F(t)=t^2) and G be the approximation function (in this example let's say G(t)=sin(t)). Then you need to define the square difference function as a function handle: fh=@(t)(t.^2-sin(t)).^2 and you get the integral (meaning your error) with E=quad(fh,0,T).

Catégories

En savoir plus sur Simulink dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by