フィルターのクリア

how can I measure the differences between tow diagram?I attached tow diagram.

1 回表示 (過去 30 日間)
fariba amini
fariba amini 2016 年 5 月 20 日
回答済み: Walter Roberson 2016 年 5 月 20 日
how can I measure the differences between tow diagram?I attached tow diagram.

採用された回答

Walter Roberson
Walter Roberson 2016 年 5 月 20 日
Measure the difference in the data instead. If the data is the same length on the same boundary then one way is RMS,
sqrt( sum((double(data1) - double(data2)).^2) )
or if the data is already double,
sqrt( sum( (data1 - data2).^2 ) )

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMigrate GUIDE Apps についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by