├── Introduction_Aerospace_Engineering ├── Aerodynamics │ ├── SoundBarrier.jpg │ └── Supersonic.ipynb ├── Astrodynamics │ ├── 3_Body_Problem.ipynb │ ├── Escape_Velocity.ipynb │ ├── Ground_Track_script.py │ ├── Ground_Tracks.py │ ├── Rocket_Equation.ipynb │ └── Two_Body.ipynb ├── HandsOn_Project_Exoplanets │ ├── Exoplanets.ipynb │ ├── fluxes.py │ └── transit.txt ├── HandsOn_Project_Interplanetary_Mission │ ├── Cambridge_Oxford.png │ ├── Curiosity.jpg │ ├── Curiosity2.jpg │ ├── HandsOn_Project_Interplanetary_Mission.ipynb │ └── JPL_control_room.jpg ├── HandsOn_Project_Wing_Structural_Test │ ├── HandsOn_Project_Wing_Structural_Test.ipynb │ └── Wing1.png └── Statistics │ ├── Birthday_Paradox.ipynb │ ├── Central_Limit_Theorem.ipynb │ └── Statistics_MontyHall.ipynb ├── Other ├── PSF_sampling.ipynb ├── PowerSpectrum_NCPA │ ├── PowerSpectrum_NCPA.ipynb │ ├── differential_features.py │ ├── zern_core.py │ └── zernike_spectrum.py └── Rabbits_and_Wolves.py ├── Project_Euler ├── 11.py ├── 13.py ├── 24.py ├── 29.py ├── 38.py ├── 41.py ├── 45.py ├── 47.py ├── 50.py ├── 56.py ├── 60.py ├── 78.py ├── Collatz_conjecture.ipynb ├── Cool_Problem.ipynb ├── Pycuda_Project_Euler.ipynb └── Recaman_sequence.ipynb ├── Python ├── Pandas │ ├── exercise.py │ ├── mapping_trick.py │ ├── pandas_example.py │ └── pandas_methods.py ├── dictionary_methods.py ├── itertools_methods.py ├── list_methods.py ├── object_methods.py ├── os_methods.py ├── string_methods.py └── sys_methods.py ├── README.md ├── Statistics ├── Combinatorics │ ├── de_mere_paradox.py │ └── problems.py ├── OneThousand │ └── problem_1.py ├── Probability Problems │ ├── Boarding Passengers.ipynb │ ├── Card Game.ipynb │ ├── Cube.ipynb │ └── Dropping Boxes.ipynb ├── oxford.py ├── question_4.py └── questions.py └── TU Delft - Space Flight ├── Ballistic Entry.ipynb ├── Gliding Entry.ipynb └── img ├── shuttle.jpg └── virgin.jpg /Introduction_Aerospace_Engineering/Aerodynamics/SoundBarrier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Aerodynamics/SoundBarrier.jpg -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Aerodynamics/Supersonic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Aerodynamics/Supersonic.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Astrodynamics/3_Body_Problem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Astrodynamics/3_Body_Problem.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Astrodynamics/Escape_Velocity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Astrodynamics/Escape_Velocity.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Astrodynamics/Ground_Track_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Astrodynamics/Ground_Track_script.py -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Astrodynamics/Ground_Tracks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Astrodynamics/Ground_Tracks.py -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Astrodynamics/Rocket_Equation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Astrodynamics/Rocket_Equation.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Astrodynamics/Two_Body.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Astrodynamics/Two_Body.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Exoplanets/Exoplanets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Exoplanets/Exoplanets.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Exoplanets/fluxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Exoplanets/fluxes.py -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Exoplanets/transit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Exoplanets/transit.txt -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/Cambridge_Oxford.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/Cambridge_Oxford.png -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/Curiosity.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/Curiosity.jpg -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/Curiosity2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/Curiosity2.jpg -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/HandsOn_Project_Interplanetary_Mission.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/HandsOn_Project_Interplanetary_Mission.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/JPL_control_room.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Interplanetary_Mission/JPL_control_room.jpg -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Wing_Structural_Test/HandsOn_Project_Wing_Structural_Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Wing_Structural_Test/HandsOn_Project_Wing_Structural_Test.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/HandsOn_Project_Wing_Structural_Test/Wing1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/HandsOn_Project_Wing_Structural_Test/Wing1.png -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Statistics/Birthday_Paradox.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Statistics/Birthday_Paradox.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Statistics/Central_Limit_Theorem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Statistics/Central_Limit_Theorem.ipynb -------------------------------------------------------------------------------- /Introduction_Aerospace_Engineering/Statistics/Statistics_MontyHall.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Introduction_Aerospace_Engineering/Statistics/Statistics_MontyHall.ipynb -------------------------------------------------------------------------------- /Other/PSF_sampling.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Other/PSF_sampling.ipynb -------------------------------------------------------------------------------- /Other/PowerSpectrum_NCPA/PowerSpectrum_NCPA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Other/PowerSpectrum_NCPA/PowerSpectrum_NCPA.ipynb -------------------------------------------------------------------------------- /Other/PowerSpectrum_NCPA/differential_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Other/PowerSpectrum_NCPA/differential_features.py -------------------------------------------------------------------------------- /Other/PowerSpectrum_NCPA/zern_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Other/PowerSpectrum_NCPA/zern_core.py -------------------------------------------------------------------------------- /Other/PowerSpectrum_NCPA/zernike_spectrum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Other/PowerSpectrum_NCPA/zernike_spectrum.py -------------------------------------------------------------------------------- /Other/Rabbits_and_Wolves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Other/Rabbits_and_Wolves.py -------------------------------------------------------------------------------- /Project_Euler/11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/11.py -------------------------------------------------------------------------------- /Project_Euler/13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/13.py -------------------------------------------------------------------------------- /Project_Euler/24.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/24.py -------------------------------------------------------------------------------- /Project_Euler/29.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/29.py -------------------------------------------------------------------------------- /Project_Euler/38.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/38.py -------------------------------------------------------------------------------- /Project_Euler/41.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/41.py -------------------------------------------------------------------------------- /Project_Euler/45.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/45.py -------------------------------------------------------------------------------- /Project_Euler/47.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/47.py -------------------------------------------------------------------------------- /Project_Euler/50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/50.py -------------------------------------------------------------------------------- /Project_Euler/56.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/56.py -------------------------------------------------------------------------------- /Project_Euler/60.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/60.py -------------------------------------------------------------------------------- /Project_Euler/78.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/78.py -------------------------------------------------------------------------------- /Project_Euler/Collatz_conjecture.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/Collatz_conjecture.ipynb -------------------------------------------------------------------------------- /Project_Euler/Cool_Problem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/Cool_Problem.ipynb -------------------------------------------------------------------------------- /Project_Euler/Pycuda_Project_Euler.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/Pycuda_Project_Euler.ipynb -------------------------------------------------------------------------------- /Project_Euler/Recaman_sequence.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Project_Euler/Recaman_sequence.ipynb -------------------------------------------------------------------------------- /Python/Pandas/exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/Pandas/exercise.py -------------------------------------------------------------------------------- /Python/Pandas/mapping_trick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/Pandas/mapping_trick.py -------------------------------------------------------------------------------- /Python/Pandas/pandas_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/Pandas/pandas_example.py -------------------------------------------------------------------------------- /Python/Pandas/pandas_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/Pandas/pandas_methods.py -------------------------------------------------------------------------------- /Python/dictionary_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/dictionary_methods.py -------------------------------------------------------------------------------- /Python/itertools_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/itertools_methods.py -------------------------------------------------------------------------------- /Python/list_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/list_methods.py -------------------------------------------------------------------------------- /Python/object_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/object_methods.py -------------------------------------------------------------------------------- /Python/os_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/os_methods.py -------------------------------------------------------------------------------- /Python/string_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/string_methods.py -------------------------------------------------------------------------------- /Python/sys_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Python/sys_methods.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/README.md -------------------------------------------------------------------------------- /Statistics/Combinatorics/de_mere_paradox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/Combinatorics/de_mere_paradox.py -------------------------------------------------------------------------------- /Statistics/Combinatorics/problems.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/Combinatorics/problems.py -------------------------------------------------------------------------------- /Statistics/OneThousand/problem_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/OneThousand/problem_1.py -------------------------------------------------------------------------------- /Statistics/Probability Problems/Boarding Passengers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/Probability Problems/Boarding Passengers.ipynb -------------------------------------------------------------------------------- /Statistics/Probability Problems/Card Game.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/Probability Problems/Card Game.ipynb -------------------------------------------------------------------------------- /Statistics/Probability Problems/Cube.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/Probability Problems/Cube.ipynb -------------------------------------------------------------------------------- /Statistics/Probability Problems/Dropping Boxes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/Probability Problems/Dropping Boxes.ipynb -------------------------------------------------------------------------------- /Statistics/oxford.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/oxford.py -------------------------------------------------------------------------------- /Statistics/question_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/question_4.py -------------------------------------------------------------------------------- /Statistics/questions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/Statistics/questions.py -------------------------------------------------------------------------------- /TU Delft - Space Flight/Ballistic Entry.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/TU Delft - Space Flight/Ballistic Entry.ipynb -------------------------------------------------------------------------------- /TU Delft - Space Flight/Gliding Entry.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/TU Delft - Space Flight/Gliding Entry.ipynb -------------------------------------------------------------------------------- /TU Delft - Space Flight/img/shuttle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/TU Delft - Space Flight/img/shuttle.jpg -------------------------------------------------------------------------------- /TU Delft - Space Flight/img/virgin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlvaroMenduina/Jupyter_Notebooks/HEAD/TU Delft - Space Flight/img/virgin.jpg --------------------------------------------------------------------------------