Test of Jupyter Notebook generator

This is a generated file using misc/ipynb_generator.py.

Math

This is a test notebook.

$$y'=ky$$

In [1]:
import numpy as np

print(np.exp(1.0))


2.71828182846

The above is a Python code for the following:


In [2]:
print(np.log(1.0))


0.0

Text

This is the footer notes for this generated notebook.

Magic method:


In [3]:
%matplotlib inline

Matplotlib:


In [4]:
import matplotlib.pylab as plt
plt.plot(range(100), [x * x for x in range(100)], 'k-')
plt.show()


This is a raw cell.