Why does polyfit not exist in r2019b?

2 views (last 30 days)
I cannot seem to get polyfit to work - and it seems like my copy doesn't even think it exists:
>> help polyfit
polyfit is a variable of type double.
>> doc polyfit
polyfit is a variable of type double.
Any help would be appreciated!

Accepted Answer

Adam Danz
Adam Danz on 10 Dec 2019
Edited: Adam Danz on 10 Dec 2019
You have a variable with the same name so Matlab no longer has access to the function until you delete the variable. clear('polyfit')
Rename the variable and the problem is solved.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!