1 parte uno

subsección

Hoy Ana está aprendiendo a jugar con Python $d\cos(\theta)$


In [1]:
%matplotlib inline
import numpy as np
import matplotlib.pyplot as plt

# Esto es un test
print ('Hello world')


Hello world

In [8]:
x=np.arange(4)+1 # np.arange(1,5)
print x
plt.plot(x,[1,4,9,11],'b*--')


[1 2 3 4]
Out[8]:
[<matplotlib.lines.Line2D at 0x7fa1f67c2550>]

In [ ]: