File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -230,16 +230,17 @@ end
230230
231231function const_meyer_wavelets (𝚽, Uf; idx = 1 : size (Uf, 1 ))
232232 N = size (𝚽, 1 )
233- # assemble smooth orthogonal projector custom to nodes `idx`
234- P = Uf[idx, :]' * Uf[idx, idx]
235- if diag (P) == χ (idx, N)
236- B = 𝚽[:, idx]
237- else
238- # folding the eigenspace, i.e., 𝚽's column space
239- Y = 𝚽 * P
240- # find its column space's orthogonal basis
241- B = svd (Y). U
242- end
233+ # # assemble smooth orthogonal projector custom to nodes `idx`
234+ # P = Uf[idx, :]' * Uf[idx, idx]
235+ # if diag(P) == χ(idx, N)
236+ # B = 𝚽[:, idx]
237+ # else
238+ # # folding the eigenspace, i.e., 𝚽's column space
239+ # Y = 𝚽 * P
240+ # # find its column space's orthogonal basis
241+ # B = svd(Y).U
242+ # end
243+ B = 𝚽 * Uf[:, idx]
243244 # perform varimax rotation to get the meyer_wavelets
244245 Wavelets = varimax (B)
245246 return Wavelets
You can’t perform that action at this time.
0 commit comments