Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
how can I measure the differences between tow diagram?I attached tow diagram.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 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 ) )

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by