Lectures can be downloaded and viewed on github: https://github.com/oseledets/nla2016
They can also be viewed online using nbviewer: http://nbviewer.jupyter.org/github/oseledets/nla2016/tree/master/
The most comfortable way to navigate through course materials is to use table_of_contents.ipynb
file in repo.
We encourage you to use Piazza platform for communication with TAs and with each other.
<img src="grades.png", width=300>
In [4]:
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
x = np.linspace(0,1,1024)
plt.plot(np.sin(20*x))
#Do some random plot here
Out[4]:
From advanced topics, we will try to cover compressed sensing, image procession and tensor factorizations.
In [1]:
from IPython.core.display import HTML
def css_styling():
styles = open("./styles/custom.css", "r").read()
return HTML(styles)
css_styling()
Out[1]: