----------------------------------------------------------------------
Filename : 01_jupyter_notebook.ipynb
Date : 22nd June, 2017
Author : Jaidev Deshpande
Purpose : Introduction to Jupyter notebook and its features.
Libraries: IPython, JuPyter and matplotlib
----------------------------------------------------------------------
In [ ]:
# Example of an input-only cell
import numpy as np
import matplotlib.pyplot as plt
plt.style.use('ggplot')
%matplotlib inline
In [ ]:
# Examples of cells with output
print("Hello, World!")
In [ ]:
# Example of inline plotting
t = np.linspace(-2 * np.pi, 2 * np.pi, 1000)
x = np.cos(2 * np.pi * 2 * t)
plt.plot(t, x)
In [ ]:
np.arange?
In [ ]:
np.linspace??