How can I find and intersection values between line and polynomial equation ?
이전 댓글 표시
Hi all,
First of all I have gathered some data from my experiments witch looks something like this:

Now I do a linearization for my data using Matlab command:
y=feval(fit(a(l:o,1,1),a(l:o,2,1),'poly1'),a(l:o,1,1));
Results looks like this:

Now I do a interpolation using for example 5th order poly and get this:

I calculate the peak value and calculate -3dB value of peak value and get a line as you can see in the image:

Now my question is, what is the fastest and the best function to find the intersection x values of the 5th order polynomial and the line?
댓글 수: 3
Azzi Abdelmalek
2013년 3월 7일
편집: Azzi Abdelmalek
2013년 3월 7일
png files are not handled by the editor of this forum, use instead jpg format
David B
2013년 3월 7일
Randy Souza
2013년 4월 12일
편집: Randy Souza
2013년 4월 12일
<<image-url>>
I edited David's post to use the correct markup.
답변 (2개)
Ryan Livingston
2013년 3월 7일
Provided that you can evaluate the fit object like a function, I think you can but I'm not too familiar with those (they can be passed to FEVAL I think), you can write a small anonymous function like:
@(x)polyFun(x) - lineFun(x)
which evaluates the difference between the two, where "polyFun" returns the value of your 5th degree fit and "lineFun" returns the value of your line. Then that can be used in FZERO:
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!