필터 지우기
필터 지우기

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.

채택된 답변

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 CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by