You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Computes L1 norms of wavelet transform coefficients at different scales for a HEALPix map. The wavelet transform is performed using the undecimated wavelet transform.
594
+
Computes L1 norms of normalized wavelet transform coefficients at different scales for a HEALPix map.
595
+
The wavelet transform is performed using CMRStarlet. The normalization ensures || Psi_j ||^2 = 1.
596
+
The values binned are C.coef[j] / C.TabNorm[j].
596
597
597
598
Parameters
598
599
----------
@@ -605,13 +606,11 @@ def get_norm_wtl1_sphere(
605
606
Mask : array_like, optional
606
607
Mask indicating where we have observations. Only pixels where Mask != 0 are considered.
607
608
min_snr : float, optional
608
-
Minimum value for binning. If None, uses the minimum value in the coefficients.
609
+
Minimum value for binning the normalized coefficients (C.coef[j] / C.TabNorm[j]).
610
+
If None, uses the minimum value in the coefficients for the current scale.
609
611
max_snr : float, optional
610
-
Maximum value for binning. If None, uses the maximum value in the coefficients.
611
-
path : str, optional
612
-
Path to the directory for temporary files. Default is "/.".
613
-
normalize_energy : bool, optional
614
-
If True, normalize wavelet coefficients by their energy. Default is False.
612
+
Maximum value for binning the normalized coefficients (C.coef[j] / C.TabNorm[j]).
613
+
If None, uses the maximum value in the coefficients for the current scale.
615
614
616
615
Returns
617
616
-------
@@ -625,33 +624,37 @@ def get_norm_wtl1_sphere(
625
624
ifnbinsisNone:
626
625
nbins=40
627
626
628
-
# Perform undecimated wavelet transform on the spherical map
0 commit comments