how can I measure the differences between tow diagram?I attached tow diagram.
1 回表示 (過去 30 日間)
古いコメントを表示
how can I measure the differences between tow diagram?I attached tow diagram.
0 件のコメント
採用された回答
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 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Migrate GUIDE Apps についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!