Kernel Density Estimator ツールボックス フォームhttp://www.ics.uci.edu/~ihler/code/kde.htmlを使用しています。しかし、デモファイルを実行しようとすると、次のエラーが発生します -
>> demo_kde_3
KDE Example #3 : Product sampling methods (single, anecdotal run)
Attempt to reference field of non-structure array.
Error in double (line 10)
if (npd.N > 0) d = 1; % return 1 if the density exists
Error in repmat (line 49)
nelems = prod(double(siz));
Error in kde (line 39)
if (size(ks,1) == 1) ks = repmat(ks,[size(points,1),1]); end;
Error in demo_kde_3 (line 8)
p = kde([.1,.45,.55,.8],.05); % create a mixture of 4 gaussians for
testing
誰が何が間違っているのか提案できますか? 私はMatlabが初めてで、問題を理解するのに苦労しています。
ありがとうございました、