Getting the values from the curve fitted model

5 views (last 30 days)
Is there a way i can get the new values of the datas ( x and y) from the curve fitted model?
  1 Comment
jonas
jonas on 5 Aug 2018
Edited: jonas on 5 Aug 2018
How did you fit your model? fit? polyfit?

Sign in to comment.

Accepted Answer

jonas
jonas on 5 Aug 2018
If you used fit:
p=fit(...) %your model
y=p(x) %evaluate your model at x
Similarily, if you used polyfit:
p=polyfit(...) %your model
y=polyval(p,x) %evaluate your model at x

More Answers (0)

Community Treasure Hunt

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

Start Hunting!