curve fitting my plot
조회 수: 1 (최근 30일)
이전 댓글 표시
trying to make my curve smooth instead of at a point. any insight will help. thank you
댓글 수: 0
채택된 답변
Ameer Hamza
2020년 3월 22일
You are making graph of . It is expected to be pointy. You can make graph of some other function like
f = @(x,k) exp(-k*x.^2);
which will have smooth peak.
댓글 수: 1
Image Analyst
2020년 3월 22일
Try smoothdata() or conv():
signal = conv(signal, ones(1, 30)/30, 'same');
This will blur it out and smooth it.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Curve Fitting Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!