polynomial curve fitting error
이전 댓글 표시
Hi i have a simple problem but strange error. am doing a polynomial curve fitting for two column vectors x and y. i use command "p = polyfit(x,y,3) . It gives me following error
Attempt to execute SCRIPT polyfit as a function:
What could be the possible reason for it. Many thanks
채택된 답변
추가 답변 (1개)
If, for some reasons, you like to name your script "polyfit.m", try adding a prefix to make the filename unique.
Here are some examples:
- myPolyFit.m
- Test1_polyfit.m
- Sumera_polyfit.m
Before saving the filename, you can check if the chosen filename exists in other MATLAB folders or not.
which myPolyFit -all
which PolyFit -all
댓글 수: 1
Sumera Yamin
2023년 4월 5일
편집: Sumera Yamin
2023년 4월 5일
카테고리
도움말 센터 및 File Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

