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

1 vue (au cours des 30 derniers jours)
how can I measure the differences between tow diagram?I attached tow diagram.

Réponse acceptée

Walter Roberson
Walter Roberson le 20 Mai 2016
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 ) )

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps 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