├── LICENSE.txt ├── README.md ├── examples ├── artif_blind.py ├── artif_shg.py ├── example_data │ └── stronglychirpeddouble.dat ├── generate_frog_traces.py ├── pics │ ├── example_traces.png │ ├── mix0.png │ ├── mix1.png │ ├── mix2.png │ ├── rec_artif_shg.png │ └── rec_artif_shg0.png └── stronglychirpeddouble.py └── froglib ├── __init__.py ├── auxiliary.py ├── corefunctions.py ├── phasemanipulations.py ├── plotting.py ├── reconstructionloops.py └── statistics.py /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/README.md -------------------------------------------------------------------------------- /examples/artif_blind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/artif_blind.py -------------------------------------------------------------------------------- /examples/artif_shg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/artif_shg.py -------------------------------------------------------------------------------- /examples/example_data/stronglychirpeddouble.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/example_data/stronglychirpeddouble.dat -------------------------------------------------------------------------------- /examples/generate_frog_traces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/generate_frog_traces.py -------------------------------------------------------------------------------- /examples/pics/example_traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/pics/example_traces.png -------------------------------------------------------------------------------- /examples/pics/mix0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/pics/mix0.png -------------------------------------------------------------------------------- /examples/pics/mix1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/pics/mix1.png -------------------------------------------------------------------------------- /examples/pics/mix2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/pics/mix2.png -------------------------------------------------------------------------------- /examples/pics/rec_artif_shg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/pics/rec_artif_shg.png -------------------------------------------------------------------------------- /examples/pics/rec_artif_shg0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/pics/rec_artif_shg0.png -------------------------------------------------------------------------------- /examples/stronglychirpeddouble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/examples/stronglychirpeddouble.py -------------------------------------------------------------------------------- /froglib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/froglib/__init__.py -------------------------------------------------------------------------------- /froglib/auxiliary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/froglib/auxiliary.py -------------------------------------------------------------------------------- /froglib/corefunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/froglib/corefunctions.py -------------------------------------------------------------------------------- /froglib/phasemanipulations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/froglib/phasemanipulations.py -------------------------------------------------------------------------------- /froglib/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/froglib/plotting.py -------------------------------------------------------------------------------- /froglib/reconstructionloops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/froglib/reconstructionloops.py -------------------------------------------------------------------------------- /froglib/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmhk/froglib/HEAD/froglib/statistics.py --------------------------------------------------------------------------------