![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1307500/image.png)
Read the value of the trend line from an X-value
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Max1234
am 26 Feb. 2023
Bearbeitet: Image Analyst
am 26 Feb. 2023
Hi guys,
I have displayed measurement data as scatter and created the trend lines with polyval and polyfit. Is there a way to read the value of the trend line from an X-value?
Many thanks in advance!
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 26 Feb. 2023
See my attached polyfit demo.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1307500/image.png)
Once you have the formula coefficients, you can either use the equation (like in the title of the plots above), or use the function polyval to get the estimated/fitted y value.
2 Kommentare
Image Analyst
am 26 Feb. 2023
Bearbeitet: Image Analyst
am 26 Feb. 2023
It's a variable (vector) in the program called "coefficients". Open up the code and look at it. It's exceptionally well commented. Specifically
% Do the regression with polyfit to fit a cubic polynomial.
cubicCefficients = polyfit(x, y, 3)
I also show how to get the equation using those coefficients.
% Get the estimated values with polyval()
yFit = polyval(cubicCefficients, xFit);
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Polynomials finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!