polyplot
This function simply plots a polynomial fit to scattered x,y data. This function can be used to easily add a linear trend line or other polynomial fit to a data plot.
Syntax
polyplot(x,y)
polyplot(x,y,n)
polyplot(...,'LineProperty',LineValue,...)
polyplot(...,'error')
polyplot(...,'error','ErrorLineProperty',ErrorLineValue)
[h,p,delta] = polyplot(...)
Description
polyplot(x,y) places a least-squares linear trend line through scattered x,y data.
polyplot(x,y,n) specifies the degree n of the polynomial fit to the x,y data. Default n is 1.
polyplot(...,'LineProperty',LineValue,...) formats linestyle using LineSpec property name-value pairs (e.g., 'linewidth',3).
polyplot(...,'error') includes lines corresponding to approximately +/- 1 standard deviation of errors delta. At least 50% of data should lie within the bounds of error lines.
polyplot(...,'error','ErrorLineProperty',ErrorLineValue) formats error lines with line property name-value pairs. All arguments occurring after 'error' are assumed to be error line property specifications.
[h,p,delta] = polyplot(...) returns handle(s) h of plotted line(s), coefficients p of polynomial fit p(x), and error estimate delta, which is the standard deviation of error in predicting a future observation at x by p(x). Assuming independent, normal, constant-variance errors, y +/- delta contains at least 50% of the predictions of future observations at x.
Cita come
Chad Greene (2024). polyplot (https://www.mathworks.com/matlabcentral/fileexchange/49119-polyplot), MATLAB Central File Exchange. Recuperato .
Compatibilità della release di MATLAB
Compatibilità della piattaforma
Windows macOS LinuxCategorie
- AI and Statistics > Curve Fitting Toolbox > Interpolation >
- Mathematics and Optimization > Optimization Toolbox > Least Squares >
Tag
Riconoscimenti
Ispirato da: Polynomial Trendlines, trend
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Scopri Live Editor
Crea script con codice, output e testo formattato in un unico documento eseguibile.
polyplot/
polyplot/html/
Versione | Pubblicato | Note della release | |
---|---|---|---|
1.0.0.0 |