How can I find and intersection values between line and polynomial equation ?
Afficher commentaires plus anciens
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 commentaires
Azzi Abdelmalek
le 7 Mar 2013
Modifié(e) : Azzi Abdelmalek
le 7 Mar 2013
png files are not handled by the editor of this forum, use instead jpg format
David B
le 7 Mar 2013
Randy Souza
le 12 Avr 2013
Modifié(e) : Randy Souza
le 12 Avr 2013
<<image-url>>
I edited David's post to use the correct markup.
Réponses (2)
Ryan Livingston
le 7 Mar 2013
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:
David B
le 8 Mar 2013
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!