Can MATLAB create a linear graph from polynomial graph?

Hi everybody,
I have an elevation-distance graph on MATLAB and its type is polynominal and i must change the graph style from polynominal to linear for reckon without some values. I can use MATLAB Fitting Toolbox, but this operation takes too long time and i don't sure whether make an error or not. 
Can MATLAB create a linear graph automatically? Or Do i have to use Fitting Toolbox for this purpose?
Thanks...

댓글 수: 1

Don't follow what it is you're wanting do do here precisely, sorry. You mean you would want to approximate the above detailed very noisy curve with some linear piecewise sections, maybe? If so, how closely do you want the approximation to be--three gross sections good enough or what? To have a representation as is, probably the spline interpolant would be the choice--it'll have a lot of sections but those are essentially hidden from the user so doesn't really matter too much on the complexity.

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

답변 (1개)

Jang geun Choi
Jang geun Choi 2016년 10월 2일
x=0:0.2:2*pi;
y=3*sin(x)+2*x+rand(size(x)); % example data
% linear regression
P=polyfit(x,y,1);
y2=polyval(P,x);
% Visualization
plot(x,y)
hold on
plot(x,y2,'r')

카테고리

도움말 센터File Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기

질문:

2016년 10월 1일

답변:

2016년 10월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by