Hello everyone. I have a long-standing problem, how to calculate the similarity between the two curves that have been fitted. Thank you for your enthusiastic answers.

조회 수: 1 (최근 30일)
corrcoef(f1,f2)
corr2(f1,f2)
  댓글 수: 4
Steven Lord
Steven Lord 2021년 1월 23일
What is your definition of "similarity"? Is x1 more similar to x2 or x3? Why?
x1 = 1:5
x1 = 1×5
1 2 3 4 5
x2 = x1 + 1
x2 = 1×5
2 3 4 5 6
x3 = [1:4 7]
x3 = 1×5
1 2 3 4 7
How about x4?
x4 = x1 + (-0.5:0.25:0.5)
x4 = 1×5
0.5000 1.7500 3.0000 4.2500 5.5000
What's most simlar to the black line in the plot below? The cyan with upward pointing triangles, the green with downward pointing triangles, or the magenta with rightward pointing triangles?
plot(x1, x1, 'k-+', x1, x2, 'c-^', x1, x3, 'g-v', x1, x4, 'm->')
Wesley
Wesley 2021년 1월 24일
Thank you for your enthusiastic answer.
My defination:
1. Their abscissas have the same starting point and ending point;
2. The slopes of the curves are roughly equal.

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Surface and Mesh Plots에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by