Markdownサンプル
$$e^x=\sum_{i=0}^\infty \frac{1}{i!}x^i$$def sayhello():
print('Hello World')
# Let's say hello
sayhello()
import numpy as np
from matplotlib import pyplot as plt
import math
%matplotlib inline
x = np.arange(0, math.pi*4, 0.01)
y1 = np.sin(x)
y2 = np.cos(x)
print('x:', x[:5])
print('sin(x):', y1[:5])
print('cos(x):', y2[:5])
plt.plot(x, y1)
plt.plot(x, y2)
Copyright © 2020 Miyadauku
Powered by miyadaiku