pygsp icon indicating copy to clipboard operation
pygsp copied to clipboard

compute_frame() does the wrong thing when G.N == Nf

Open pulquero opened this issue 4 years ago • 0 comments

Passing a 2D array to filter() is ambiguous when G.N == Nf. A 3D array should be used to be unambiguous, e.g.

s = np.identity(g.G.N) tig = g.filter(s[..., np.newaxis], **kwargs)

pulquero avatar Mar 24 '20 17:03 pulquero