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

1 visualización (últimos 30 días)
how can I measure the differences between tow diagram?I attached tow diagram.

Respuesta aceptada

Walter Roberson
Walter Roberson el 20 de Mayo de 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 ) )

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by