Undefined function 'fit' for input arguments of type 'double'.
古いコメントを表示
I have already downloaded curve fitting toolbox
as when i type
which fit
is returned
C:\Program Files\MATLAB\R2019b\toolbox\stats\stats\@gmdistribution\fit.m % gmdistribution method
but when i am trying to implement 'fit' function even in the following simple exampe i have an error
x=[1;4;10];
y=[2;4;6];
a=fit(x,y,'poly1');
and the error i have is:
>> Untitled
Undefined function 'fit' for input arguments of type
'double'.
Error in Untitled (line 3)
a=fit(x,y,'poly1');
回答 (1 件)
madhan ravi
2020 年 7 月 26 日
編集済み: madhan ravi
2020 年 7 月 26 日
0 投票
You don’t have the license for it.
6 件のコメント
Georgios Tsimplis
2020 年 7 月 26 日
Georgios Tsimplis
2020 年 7 月 26 日
madhan ravi
2020 年 7 月 26 日
>> which fit -all
/MATLAB/toolbox/curvefit/curvefit/fit.m
/MATLAB/toolbox/stats/stats/@gmdistribution/fit.m % gmdistribution method
madhan ravi
2020 年 7 月 26 日
Seems like you don’t have the “Curve Fitting Toolbox” .
Georgios Tsimplis
2020 年 7 月 26 日
編集済み: Georgios Tsimplis
2020 年 7 月 26 日
madhan ravi
2020 年 7 月 26 日
Go to Adds-On and download the toolbox from there.
カテゴリ
ヘルプ センター および File Exchange で Linear Predictive Coding についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!