polyreg - Data Points Nth Order Polynomial Regression
% polyreg
% This function fits a polynomial of order n to a given data points (x,y)
% using regression techniques
% ----------------------------------------------
% inputs
% x x points
% y f(x)
% n polynomial order; 1 for linear
% ----------------------------------------------
% output
% sol.constants constants that need to be found
% sol.fn curve fittin-g function
% sol.syx the standard erro of the estimate
% sol.sr the best fit criterion
% sol.r2 the coefficient of determination; 1 is the best value
% sol.std standard deviation
% ----------------------------------------------
% Example
% x=[1,4,2,4];
% y=[.9 3 10 15];
% n=1;
% sol = polyreg(x,y,n);
% ----------------------------------------------
%
% All copyrights goes to Mohammad Al-Fetyani
% University of Jordan
Cite As
Mohammad Al-Fetyani (2026). polyreg - Data Points Nth Order Polynomial Regression (https://www.mathworks.com/matlabcentral/fileexchange/69862-polyreg-data-points-nth-order-polynomial-regression), MATLAB Central File Exchange. Retrieved .
MATLAB Release Compatibility
Platform Compatibility
Windows macOS LinuxCategories
Tags
Discover Live Editor
Create scripts with code, output, and formatted text in a single executable document.
| Version | Published | Release Notes | |
|---|---|---|---|
| 1.0.0 |
