Create function that functionally same to polyfit

5 Ansichten (letzte 30 Tage)
종석 박
종석 박 am 16 Mai 2022
Bearbeitet: 종석 박 am 9 Jun. 2022
Create a user-defined function 'fitpoly' that has the same function as 'polyfit'
Reads the given data points from a text or Excel file and approximates the curve with an nth-order polynomial function
Set the input and output factors the same as ‘polyfit’
  4 Kommentare
Rik
Rik am 17 Mai 2022
Unfortunately for you, Google had a cached version of this page from before you attempted to edit away your homework question.
It is now also on the Wayback Machine.
Sam Chak
Sam Chak am 17 Mai 2022
Bearbeitet: Sam Chak am 17 Mai 2022
I think the Professor won't penalize @종석 박 so long as he acquired the regression analysis knowledge (cognitive) and the coding skills (psychomotor) as required by the assignment and outlined in the Outcome-Based Education (OBE). The Professor will be happy when writing the Education Report at the end of the academic term. As long as there is no blatant plagiarism elements, then he should be "SAFE".
Nevertheless Park will still have to produce the math as shown in Polynomial Regression.

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Image Analyst
Image Analyst am 17 Mai 2022
There is still another way @종석 박 can do the assignment without plagiarizing. He can construct the equation like
Ax = y
using a for loop where A =
x(1)^n, x(1)^(n-1), x(1)^(n-2), ....., x(1), 1
x(2)^n, x(2)^(n-1), x(2)^(n-2), ....., x(2), 1
x(3)^n, x(3)^(n-1), x(3)^(n-2), ....., x(3), 1
...
x(m)^n, x(m)^(n-1), x(m)^(n-2), ....., x(m), 1
Then once you have the tall array you can do
coefficients = A \ y(:)
which is basically the method for doing least squares regression "manually".

Sam Chak
Sam Chak am 16 Mai 2022
I find it a little strange. Should your Intructor/Professor send you to learn the essentials through MATLAB Onramp at the beginning of the course in MATLAB?
From your description, it seems that your Intructor/Professor wants you to study the algorithm in polyfit.m.
This example only has 3 points, (1, 4), (2, 7), (3, 14). Try to improvise from here.
% Formulate the problem as a linear equation, A*x = b
P = [1 4; 2 7; 3 14]
x = P(:, 1)
A = [x.^2 x repelem(1, 3, 1)]
b = P(:, 2)
x = A\b

Image Analyst
Image Analyst am 16 Mai 2022
@종석 박 did you try what Jan told you?
function coefficients = myPolyFit(x, y, n)
coefficients = x(:) .^ (n : -1 : 0) \ y(:);
end
If not, why not?

Kategorien

Mehr zu Descriptive Statistics 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!

Translated by