integral of the squared error
显示 更早的评论
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.
回答(1 个)
Andrei Caragea
2011-12-7
0 个投票
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).
类别
在 帮助中心 和 File Exchange 中查找有关 Numerical Integration and Differentiation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!