How to measure graph wave distance ?
이전 댓글 표시
I want to find the distance between the graph and straight line as shown below,

Thank you.
댓글 수: 2
Shashi Kiran
2024년 9월 23일
Do you have the specific points on the curve and the line available?
MARLIANA HAFIZA
2024년 9월 23일
답변 (1개)
Bruno Luong
2024년 9월 23일
편집: Bruno Luong
2024년 9월 23일
0 개 추천
It looks like you need to rotate the whole picture (red line + blue curve) to minus the slope of the red line.
After rotation the redline become horizontal; then tthe distance is just the differential y-coordinate (after rotation) of the any blue points to the y-coordinate of the horizontal red line
Rotation is multiply x-y coordinates by matrix, see wiki
R := [cos(theta) -sin(theta);
sin(theta) cos(theta)]
R*[x;y]
Use theta as minus the slope of red line. You must know the redlinne equaltion, so its slope somehow.
카테고리
도움말 센터 및 File Exchange에서 Video games에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!