smoothSignalOnGraph {sccore} | R Documentation |
Smooth Signal on Graph
Description
Smooth Signal on Graph
Usage
smoothSignalOnGraph(
signal,
filter,
graph = NULL,
lap = NULL,
l.max = NULL,
m = 50,
...
)
Arguments
signal |
signal to be smoothed |
filter |
function that accepts signal 'x' and the maximal Laplacian eigenvalue 'l.max'. See |
graph |
igraph object with the graph (default=NULL) |
lap |
graph laplacian (default=NULL). If NULL, 'lap' estimated from graph. |
l.max |
maximal eigenvalue of 'lap' (default=NULL). If NULL, estimated from 'lap'. |
m |
numeric Maximum order of Chebyshev coeff to compute (default=50) |
... |
Arguments passed on to
|
See Also
Other graph smoothing:
computeChebyshevCoeffs()
,
heatFilter()
,
smoothChebyshev()