polynomial curve fitting error
7 ビュー (過去 30 日間)
古いコメントを表示
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
0 件のコメント
採用された回答
John D'Errico
2023 年 4 月 5 日
編集済み: John D'Errico
2023 年 4 月 5 日
Is there a good reason why you called the script you wrote polyfit?
Yes, I suppose you had a very good reason, because you wanted to write a script to use polyfit. But now consider what happens to MATLAB. Does it know what you intended when you then try to use polyfit. Which one should it use? The script, named polyfit, or the original function, also named polyfit? It tries to do its best, but it is confused. Never confuse a computer. It might get upset, and then go hack your checking account. ;-) These blasted computers sometimes can be vengeful things.
DO NOT NAME YOUR SCRIPTS OR YOUR OWN FUNCTIONS WITH THE NAMES OF EXISTING MATLAB FUNCTIONS. Do this at the command prompt:
whch polyfit -all
Then, rename your script.
3 件のコメント
John D'Errico
2023 年 4 月 6 日
編集済み: John D'Errico
2023 年 4 月 6 日
How do you display them? I would probably put the coefficients into the title. Maybe like this:
x = rand(10,1);
y = exp(x);
P3 = polyfit(x,y,3)
syms X
SP3 = dot(P3,X.^[3 2 1 0]);
plot(x,y,'o')
xlabel X
ylabel Y
title(char(vpa(SP3,3)))
hold on
fplot(SP3,[0,1])
Yes, I could have displayed the coefficients in the plot window itself. To do that, I might have used the text function, writing the text in one unused corner of the figure window. Or you don't need to used a symbolic expression at all, just put a list of numbers up. But I like the way syms does it.
Steven Lord
2023 年 4 月 6 日
You could also put it in the legend. I used sprintf to create a quick and slightly messy representation of the polynomial, but you could postprocess the string (removing a leading +, changing x^1 and x^0 to x and nothing respectively, omitting terms with a coefficient of 0, etc.)
x = rand(10,1);
y = exp(x);
n = 3;
P3 = polyfit(x,y,n)
str = sprintf('%+g x^%d', [P3; n:-1:0])
xs = sort(x);
plot(xs, polyval(P3, xs), 'o-', DisplayName=str)
legend show
その他の回答 (1 件)
Sam Chak
2023 年 4 月 5 日
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
参考
カテゴリ
Help Center および File Exchange で Descriptive Statistics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!