from traitlets.config.manager import BaseJSONConfigManager
#path = "/home/damian/miniconda3/envs/rise_latest/etc/jupyter/nbconfig"
cm = BaseJSONConfigManager()
cm.update('livereveal', {
'theme': 'sky',
'transition': 'zoom',
'start_slideshow_at': 'selected',
'scroll': True
})
{'theme': 'sky', 'transition': 'zoom', 'start_slideshow_at': 'selected', 'scroll': True}
Lectures can be downloaded and viewed on github: https://github.com/oseledets/nla2018
They can also be viewed online using nbviewer: http://nbviewer.jupyter.org/github/oseledets/nla2018/tree/master/
The most comfortable way to navigate through course materials is to use table_of_contents.ipynb
file in repo.
Course instructor: Ivan Oseledets
TAs:
Office hours (approximately one hour once a week) for recitation will be announced later.
Homework is distributed in Jupyter notebooks
Problem sets contain both theoretical and programming tasks
You can check programming tasks in our Telegram bot . Instructions will be provided later
Attendance is not strict, but do not disappoint us.
Midterm is planned on week 4
Includes both theoretical questions and practical problems
But they can be slightly adjusted.
(solve linear systems, compute eigenvalues and eigenvectors, solve linear least squares) using matrix factorizations
Our materials:
If you have difficulties with basic linear algebra:
Comprehensive NLA books:
Many applications of linear algebra you can find in "Introduction to Applied Linear Algebra" by S. Boyd and L. Vandenberghe
from IPython.core.display import HTML
def css_styling():
styles = open("./styles/custom.css", "r").read()
return HTML(styles)
css_styling()