Trend lines
조회 수: 13 (최근 30일)
이전 댓글 표시
Hi, I am trying to plot linear trend lines for a number of data sets and determine their respective gradients. Is there any way of doing this without using the 'tools,basic fitting' tab in the figure? Doing this for every plot will be quite time consuming. Sorry, I know this is probably a pretty basic question, but I'm pretty new to Matlab and would really appreciate any help. Thanks Chloe x
댓글 수: 0
채택된 답변
추가 답변 (1개)
Chad Greene
2015년 1월 22일
...Or to streamline the polyfit -> polyval -> plot process, polyplot does it all in one step, just like this:
polyplot(x,y)
You can also include any line formatting commands, just as you would with plot. For example,
polyplot(x,y,'r--','linewidth',3)
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!