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
The FLAGLET code provides functionality to perform fast and exact wavelet transform on the ball. More details may be found in the extensive `documentation <https://astro-informatics.github.io/flaglet/>`_.
25
+
The ``FLAGLET`` code provides functionality to perform fast and exact wavelet transform on the ball. More details may be found in the extensive `documentation <https://astro-informatics.github.io/flaglet/>`_.
29
26
30
-
INSTALLATION
27
+
C INSTALLATION
31
28
================================
32
-
This package can easily be installed from PyPi by running
29
+
The primary C version of this code can be installed from source by running
Following which one can check the installation by running
39
+
40
+
.. code-block:: bash
41
+
42
+
ctest
43
+
44
+
within the build directory.
45
+
46
+
PYTHNON INSTALLATION
47
+
================================
48
+
``FLAGLET`` can easily be installed from PyPi by running
33
49
34
50
.. code-block:: bash
35
51
@@ -42,11 +58,21 @@ or alternatively from source by first compiling the C++ code and running
42
58
43
59
pip install .
44
60
61
+
from the root directory, following which the installation can be tested by running
62
+
63
+
.. code-block:: bash
64
+
65
+
pytest
66
+
45
67
from the root directory.
46
68
69
+
MATLAB INSTALLATION
70
+
================================
71
+
Mex wrappers are available, however they are currently being sunsetted, so installing previously tagged versions is advised.
72
+
47
73
BASIC USAGE
48
74
================================
49
-
First install flag for python, then you can call it from any python script to perform forward and inverse flag transforms and their adjoints by
75
+
First install ``FLAGLET`` for python, then you can call it from any python script to perform forward and inverse flaglet transforms and their adjoints by
50
76
51
77
.. code-block:: python
52
78
@@ -61,7 +87,7 @@ First install flag for python, then you can call it from any python script to pe
61
87
f = rng.normal(size=(f_size)) +1j*rng.normal(size=(f_size))
0 commit comments