upgraded documentation. Added plots to docs.

This commit is contained in:
Rowan Cockett
2013-08-30 23:51:58 -07:00
parent 49ecbc7411
commit 2330ae4ec1
5 changed files with 159 additions and 57 deletions
+11
View File
@@ -0,0 +1,11 @@
import numpy as np
import matplotlib.pyplot as plt
from SimPEG import TensorMesh
h1 = np.linspace(.1,.5,3)
h2 = np.linspace(.1,.5,5)
mesh = TensorMesh([h1, h2])
mesh.plotGrid()
plt.show()