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 58
58
% Default: if the Fourier matrix is present: 'exact' otherwise 'cheby'
59
59
% * *param.order* : Degree of the Chebyshev approximation
60
60
% (default=30).
61
+ % * *param.grid_order* : grid order used to compute quadrature
62
+ % (default is param.order+1)
61
63
% * *param.verbose* : Verbosity level (0 no log - 1 display warnings)
62
- % (default 1).
64
+ % (default 1)
63
65
%
64
- % See also: gsp_filter_synthesis gsp_filter_inverse
66
+ % See also: gsp_filter_synthesis gsp_filter_inverse
65
67
%
66
68
% References: hammond2011wavelets
67
69
%
114
116
end
115
117
116
118
if ~isfield(param ,' order' ); param.order = 30 ; end
119
+ if ~isfield(param ,' grid_order' ); param.grid_order = param .order + 1 ; end
117
120
if ~isfield(param ,' verbose' ); param.verbose = 1 ; end
118
121
119
122
if isfield(param , ' cheb_order' )
174
177
175
178
176
179
cheb_coeffs = gsp_cheby_coeff(G , fi ,...
177
- param .order , param .order + 1 );
180
+ param .order , param .grid_order , param );
178
181
c = gsp_cheby_op(G , cheb_coeffs , s );
179
182
% case 'cheby_p'
180
183
%
You can’t perform that action at this time.
0 commit comments