NumericalMathematics
Lecture notebooks for the course Numerical Analysis or Numerical Mathematics as a first (introductory) one-semester course which is standardly thought to STEM students.
Notebooks are used in the course Numerical Analysis to Master's students of Computer Science at FESB. Notebooks are jointly written by Jesse Barlow from the Penn State University and Ivan Slapničar from University of Split.
Notebooks are particularly useful in on-line teaching. Notebooks are written in Julia using Pluto.jl.
Viewing the notebooks
You can view the notebooks at https://ivanslapnicar.github.io/NumericalMathematics/
Running the notebooks
You can run the notebooks in two ways:
binder
Running on - Go to https://ivanslapnicar.github.io/NumericalMathematics/ and choose the desired notebook.
- Press
Edit or run this notebook
button and choosebinder
. This will read all the necessary packages and start the notebook (within several minutes).
Running on your computer
- Clone the entire repository using
git
command:
git clone https://github.com/ivanslapnicar/NumericalMathematics.git
If you are unfamiliar with the git
tool, check GitHub help pages. You can also download the repository as a zip file.
- Install Julia. In Julia terminal run the commands
> using Pkg
> Pkg.add("Pluto")
> using Pluto
> Pluto.run()
This opens local Pluto server in your browser. Now you can choose the notebook and run it
(the notebboks are located in the directory NumericalMathematics/Lectures/
).