Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 518 Bytes

test.md

File metadata and controls

35 lines (29 loc) · 518 Bytes
jupyter
jupytext kernelspec
formats text_representation
ipynb,md
extension format_name format_version jupytext_version
.md
markdown
1.1
1.2.4
display_name language name
Python 3
python
python3

Test notebook

%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt

I think this makes another Markdown cell (Len)

x = np.linspace(-1,1)
y = x**3 - x**2 + 1
plt.plot(x,y);
plt.plot(x,x**2)