calculating maximum error

26 ビュー (過去 30 日間)
Jonathan
Jonathan 2012 年 5 月 15 日
コメント済み: Mounir guesbaya 2019 年 3 月 31 日
I created an vector in matlab that represents an object moving at a velocity v(t) = 5 + 7*t^2 starting from the position x(2) = 5 at t = 2. This vector is called x and is: x2 + 5*t + 7*t.^3/3 (x2 equals 5) (this vector was solved analytically, i.e. I just integrated the velocity function. The next vector, called xtrap, was created using MATLAB's cumtrapz function: xtrap = cumtrapz(t,v) + x2.
How do I calculate the maximum error between these two solutions? Thanks.

採用された回答

Wayne King
Wayne King 2012 年 5 月 15 日
max(abs(x-xtrap))
If you want to know which index in the vector was the largest difference
[maxdiff,Index] = max(abs(x-xtrap));
Another way is
norm(x-xtrap,Inf)
but that way, you don't get the index
  2 件のコメント
Jonathan
Jonathan 2012 年 5 月 15 日
Thanks! This is very helpful.
Mounir guesbaya
Mounir guesbaya 2019 年 3 月 31 日
Thank you.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMathematics についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by