├── .gitignore ├── LICENSE ├── README.md ├── environment.yml ├── examples ├── gen_vid.sh ├── heat.gif ├── heat_cylinder.gif ├── heat_daniel.gif ├── heat_hexa.gif ├── heat_iterations.py ├── heat_smiley.gif ├── wave.gif ├── wave_cylinder.gif ├── wave_daniel.gif ├── wave_hexa.gif ├── wave_iterations.py └── wave_smiley.gif ├── notebooks ├── complex numbers.ipynb ├── fourier_analysis.ipynb ├── nst_arpeggios_c_audio.wav ├── pde.ipynb ├── styles │ ├── custom_barba.css │ └── custom_ketch.css ├── sympy │ ├── laplace_transform.ipynb │ ├── linear_algebra.ipynb │ ├── ode.ipynb │ └── sympy_in_10_minutes.ipynb ├── vector_calculus-mayavi.ipynb └── vector_calculus-pyvista.ipynb ├── program.md ├── references.md └── slides ├── course_presentation.html ├── course_presentation.md ├── fourier_analysis.html ├── fourier_analysis.md ├── img ├── Chebyshev_Polynomials_of_the_First_Kind.svg ├── Components_stress_tensor.svg ├── Continuous_Fourier_transform_of_rect_and_sinc_functions.gif ├── Epsilontensor.svg ├── Fourier_series_integral_identities.gif ├── Fourier_transform_time_and_frequency_domains.gif ├── Fourier_vis.html ├── Hermite_poly_phys.svg ├── Mona_Lisa_eigenvector_grid.png ├── PenduloTmg.gif ├── airy_functions.py ├── airy_functions.svg ├── bessel_functions.py ├── bessel_functions.svg ├── drag_fall.mp4 ├── drag_fall.py ├── free_fall.mp4 ├── free_fall.py ├── gamma_function.py ├── gamma_function.svg ├── gradient_vis.svg ├── polar_coords.html ├── polar_coords.pvsm └── polar_coords.webgl ├── linear_transformations.html ├── linear_transformations.md ├── ode.html ├── ode.md ├── style.css ├── vector_calculus.html └── vector_calculus.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/environment.yml -------------------------------------------------------------------------------- /examples/gen_vid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/gen_vid.sh -------------------------------------------------------------------------------- /examples/heat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/heat.gif -------------------------------------------------------------------------------- /examples/heat_cylinder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/heat_cylinder.gif -------------------------------------------------------------------------------- /examples/heat_daniel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/heat_daniel.gif -------------------------------------------------------------------------------- /examples/heat_hexa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/heat_hexa.gif -------------------------------------------------------------------------------- /examples/heat_iterations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/heat_iterations.py -------------------------------------------------------------------------------- /examples/heat_smiley.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/heat_smiley.gif -------------------------------------------------------------------------------- /examples/wave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/wave.gif -------------------------------------------------------------------------------- /examples/wave_cylinder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/wave_cylinder.gif -------------------------------------------------------------------------------- /examples/wave_daniel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/wave_daniel.gif -------------------------------------------------------------------------------- /examples/wave_hexa.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/wave_hexa.gif -------------------------------------------------------------------------------- /examples/wave_iterations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/wave_iterations.py -------------------------------------------------------------------------------- /examples/wave_smiley.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/examples/wave_smiley.gif -------------------------------------------------------------------------------- /notebooks/complex numbers.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/complex numbers.ipynb -------------------------------------------------------------------------------- /notebooks/fourier_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/fourier_analysis.ipynb -------------------------------------------------------------------------------- /notebooks/nst_arpeggios_c_audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/nst_arpeggios_c_audio.wav -------------------------------------------------------------------------------- /notebooks/pde.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/pde.ipynb -------------------------------------------------------------------------------- /notebooks/styles/custom_barba.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/styles/custom_barba.css -------------------------------------------------------------------------------- /notebooks/styles/custom_ketch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/styles/custom_ketch.css -------------------------------------------------------------------------------- /notebooks/sympy/laplace_transform.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/sympy/laplace_transform.ipynb -------------------------------------------------------------------------------- /notebooks/sympy/linear_algebra.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/sympy/linear_algebra.ipynb -------------------------------------------------------------------------------- /notebooks/sympy/ode.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/sympy/ode.ipynb -------------------------------------------------------------------------------- /notebooks/sympy/sympy_in_10_minutes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/sympy/sympy_in_10_minutes.ipynb -------------------------------------------------------------------------------- /notebooks/vector_calculus-mayavi.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/vector_calculus-mayavi.ipynb -------------------------------------------------------------------------------- /notebooks/vector_calculus-pyvista.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/notebooks/vector_calculus-pyvista.ipynb -------------------------------------------------------------------------------- /program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/program.md -------------------------------------------------------------------------------- /references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/references.md -------------------------------------------------------------------------------- /slides/course_presentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/course_presentation.html -------------------------------------------------------------------------------- /slides/course_presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/course_presentation.md -------------------------------------------------------------------------------- /slides/fourier_analysis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/fourier_analysis.html -------------------------------------------------------------------------------- /slides/fourier_analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/fourier_analysis.md -------------------------------------------------------------------------------- /slides/img/Chebyshev_Polynomials_of_the_First_Kind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/Chebyshev_Polynomials_of_the_First_Kind.svg -------------------------------------------------------------------------------- /slides/img/Components_stress_tensor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/Components_stress_tensor.svg -------------------------------------------------------------------------------- /slides/img/Continuous_Fourier_transform_of_rect_and_sinc_functions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/Continuous_Fourier_transform_of_rect_and_sinc_functions.gif -------------------------------------------------------------------------------- /slides/img/Epsilontensor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/Epsilontensor.svg -------------------------------------------------------------------------------- /slides/img/Fourier_series_integral_identities.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/Fourier_series_integral_identities.gif -------------------------------------------------------------------------------- /slides/img/Fourier_transform_time_and_frequency_domains.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/Fourier_transform_time_and_frequency_domains.gif -------------------------------------------------------------------------------- /slides/img/Fourier_vis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/Fourier_vis.html -------------------------------------------------------------------------------- /slides/img/Hermite_poly_phys.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/Hermite_poly_phys.svg -------------------------------------------------------------------------------- /slides/img/Mona_Lisa_eigenvector_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/Mona_Lisa_eigenvector_grid.png -------------------------------------------------------------------------------- /slides/img/PenduloTmg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/PenduloTmg.gif -------------------------------------------------------------------------------- /slides/img/airy_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/airy_functions.py -------------------------------------------------------------------------------- /slides/img/airy_functions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/airy_functions.svg -------------------------------------------------------------------------------- /slides/img/bessel_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/bessel_functions.py -------------------------------------------------------------------------------- /slides/img/bessel_functions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/bessel_functions.svg -------------------------------------------------------------------------------- /slides/img/drag_fall.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/drag_fall.mp4 -------------------------------------------------------------------------------- /slides/img/drag_fall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/drag_fall.py -------------------------------------------------------------------------------- /slides/img/free_fall.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/free_fall.mp4 -------------------------------------------------------------------------------- /slides/img/free_fall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/free_fall.py -------------------------------------------------------------------------------- /slides/img/gamma_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/gamma_function.py -------------------------------------------------------------------------------- /slides/img/gamma_function.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/gamma_function.svg -------------------------------------------------------------------------------- /slides/img/gradient_vis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/gradient_vis.svg -------------------------------------------------------------------------------- /slides/img/polar_coords.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/polar_coords.html -------------------------------------------------------------------------------- /slides/img/polar_coords.pvsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/polar_coords.pvsm -------------------------------------------------------------------------------- /slides/img/polar_coords.webgl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/img/polar_coords.webgl -------------------------------------------------------------------------------- /slides/linear_transformations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/linear_transformations.html -------------------------------------------------------------------------------- /slides/linear_transformations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/linear_transformations.md -------------------------------------------------------------------------------- /slides/ode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/ode.html -------------------------------------------------------------------------------- /slides/ode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/ode.md -------------------------------------------------------------------------------- /slides/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/style.css -------------------------------------------------------------------------------- /slides/vector_calculus.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/vector_calculus.html -------------------------------------------------------------------------------- /slides/vector_calculus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoguaro/AdvancedMath/HEAD/slides/vector_calculus.md --------------------------------------------------------------------------------