필터 지우기
필터 지우기

how to remove the distortion by the end of the graph ?

조회 수: 2 (최근 30일)
shrik kader
shrik kader 2017년 6월 3일
댓글: Walter Roberson 2017년 6월 3일
  댓글 수: 6
John D'Errico
John D'Errico 2017년 6월 3일
So just delete all points where x is greater than 34. WTP?
shrik kader
shrik kader 2017년 6월 3일
the graph will not take its normal shape, how to delete them ?

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

답변 (1개)

John D'Errico
John D'Errico 2017년 6월 3일
Sigh. What do you mean it will not take its normal shape?
y(x > 34) = [];
x(x > 34) = [];
  댓글 수: 5
Image Analyst
Image Analyst 2017년 6월 3일
Why don't we just speed up the solution by you attaching your data?
Or try getting rid of data more than 100
y(y > 100) = [];
x(y > 100) = [];
plot(x, y, 'r-');
but seriously, attaching your data would be fastest. Read this
Walter Roberson
Walter Roberson 2017년 6월 3일
You appear to be asking that somehow an undistorted line is plotted.
Have you considered using a low-pass filter?
Have you considered determining a mathematical model for what your graph should look like, and then using the known points to determine the parameters of the model, and then using the model to project data?
Have you considered taking the points between the peak and the beginning of the distorted area, and fitting a low degree polynomial to it, and using that polynomial to project to the end of the area?

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

카테고리

Help CenterFile Exchange에서 Networks에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by