Polyfit for loop not recording results

2 views (last 30 days)
Daniel Gaggini
Daniel Gaggini on 26 Apr 2022
Answered: Walter Roberson on 26 Apr 2022
I am trying to create a forloop that stores values from a polyfit operation, I am getting the error message:
"Unable to perform assignment because the indices on the left side are not compatible with the size of the right side."
This is what I have
x = x_coordinates
y = y_coordinates
Counter = 1:15;
for i = Counter;
Fit_Best(i)=polyfit(x,y,i);
end
Does anybody know where my mistake is?

Answers (1)

Walter Roberson
Walter Roberson on 26 Apr 2022
polyfit returns a vector of coefficients which has one more entries as the given degree. degree 2 has 3 entries and so on. But you are trying to store the results in a scalar each time.
Look at cell arrays.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!