Can MATLAB create a linear graph from polynomial graph?

조회 수: 1 (최근 30일)
Volkan Yangin
Volkan Yangin 2016년 10월 1일
답변: Jang geun Choi 2016년 10월 2일
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
dpb
dpb 2016년 10월 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')

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by