Added sphinx doc support. goto docs and type:

make html

see the wonderful documents!!
This commit is contained in:
Rowan Cockett
2013-08-30 22:41:02 -07:00
parent 23cef241e5
commit 49ecbc7411
7 changed files with 653 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import numpy as np
import matplotlib.pyplot as plt
from SimPEG import TensorMesh
x0 = np.zeros(2)
h1 = np.linspace(.1,.5,3)
h2 = np.linspace(.1,.5,5)
mesh = TensorMesh([h1,h2],x0)
mesh.plotGrid()
plt.show()