Conversion of the MATLAB code used in 1A lectures.
All esential files have been transcribed into julia and python:
Topic | Julia | Pluto Notebook | Python |
---|---|---|---|
Intro Lecture | mult.jl | mult_test.jl | mult.py |
Root Finding | binarySearch.jl, binarySearchV2.jl | binaryTest.jl | binarySearch.py, binarySearchV2.py |
Solving ODEs | eulerSolve.jl | eulerTest.jl | eulerSolve.py |
LU Decomposition | Lsolve.jl, Usolve.jl, LUdecomp.jl, Asolve.jl | LUtest.jl | Lsolve.py, Usolve.py, LUdecomp.py, Asolve.py |
LU with Pivot | findLargestInCol.jl, swapRows.jl, swapRowsV2.jl, PALUdecomp.jl, PALUdecompV2.jl | pivotTest.jl | findLargestInCol.py, swapRows.py, swapRowsV2.py, PALUdecomp.py, PALUdecompV2.py |
Monte Carlo Integration | ranExp.jl, exactVolume.jl, sphereVolMC.jl, shpereVolMCImpExp.jl | mcTest.jl | ranExp.py, exactVolume.py, sphereVolMC.py, shpereVolMCImpExp.py |
Programming Advice | simpleFactorial.jl, recursiveFactorial.jl | simpleFactorial.py, recursiveFactorial.py |