Skip to content

Commit

Permalink
set maximum polynomial degree to 1e6
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfHielscher committed Apr 13, 2019
1 parent 7e4310f commit 12bf0a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/kernelFunctions/deLaValeePoussinKernel.m
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
end

% extract bandwidth
L = get_option(varargin,'bandwidth',round(psi.kappa));
L = min(1e6,get_option(varargin,'bandwidth',round(psi.kappa)));

% some constant
psi.C = beta(1.5,0.5)/beta(1.5,psi.kappa+0.5);
Expand Down

0 comments on commit 12bf0a3

Please sign in to comment.