Probability - Linear Regression

7 views (last 30 days)
Can I get some help for this question?
Below is my attempt
x=[1 3 5 9 11 13];
y=[22 51 127 202 227 248 252];
scatter(x,y)
That is the furthest I can go. Any help would be appretiated. :)
  4 Comments
Gulfstream Gaming
Gulfstream Gaming on 21 Jan 2019
@Stephan, Thanks for pointing out the mistake, I just noticed it. Thanks for the links for me to read as well. Appreciate it a lot. See you around!
Gulfstream Gaming
Gulfstream Gaming on 22 Jan 2019
@Torsten, thanks for the hint, will appreciate it a lot. :)
See you around

Sign in to comment.

Accepted Answer

Star Strider
Star Strider on 21 Jan 2019
Edited: Star Strider on 21 Jan 2019
I don’t know if you have the Optimization Toolbox or the Statistics and Machine Learning Toolbox, both of which have nonlinear regression functions. One function everyone has is fminsearch (link).
To use it, you will need to optimise a function of the form:
fcn = @(b) norm(y - Hfcn(b,t));
where ‘Hfcn’ is the function you will write for ‘H(t)’, ‘b’ is the parameter vector, and ‘t’ and ‘y’ are the respective data vectors.
I leave the rest to you!
EDIT —
Your ‘t’ vector is also missing a value. It should be:
t=[1 3 5 7 9 11 13];
I discovered that when I actually did the regression.
  2 Comments
Gulfstream Gaming
Gulfstream Gaming on 21 Jan 2019
@Star Strider, yup, i have both. Thanks for providing me the link. Appreciate it a lot. See you around! I like your profile photo
Star Strider
Star Strider on 21 Jan 2019
As always, my pleasure.
My polar bear thanks you for the compliment!

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!