polyreg - Data Points Nth Order Polynomial Regression

This function fits a polynomial of order n to a given data points (x,y) using regression techniques
83 Downloads
Updated 1 Jan 2019

View License

% 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 (2024). 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
Created with R2018b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Linear and Nonlinear Regression in Help Center and MATLAB Answers
Tags Add Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.0