File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 5858% Default: if the Fourier matrix is present: 'exact' otherwise 'cheby'
5959% * *param.order* : Degree of the Chebyshev approximation
6060% (default=30).
61+ % * *param.grid_order* : grid order used to compute quadrature
62+ % (default is param.order+1)
6163% * *param.verbose* : Verbosity level (0 no log - 1 display warnings)
62- % (default 1).
64+ % (default 1)
6365%
64- % See also: gsp_filter_synthesis gsp_filter_inverse
66+ % See also: gsp_filter_synthesis gsp_filter_inverse
6567%
6668% References: hammond2011wavelets
6769%
114116end
115117
116118if ~isfield(param ,' order' ); param.order = 30 ; end
119+ if ~isfield(param ,' grid_order' ); param.grid_order = param .order + 1 ; end
117120if ~isfield(param ,' verbose' ); param.verbose = 1 ; end
118121
119122if isfield(param , ' cheb_order' )
174177
175178
176179 cheb_coeffs = gsp_cheby_coeff(G , fi ,...
177- param .order , param .order + 1 );
180+ param .order , param .grid_order , param );
178181 c = gsp_cheby_op(G , cheb_coeffs , s );
179182% case 'cheby_p'
180183%
You can’t perform that action at this time.
0 commit comments