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
+12
View File
@@ -0,0 +1,12 @@
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)
h3 = np.linspace(.1,.5,3)
mesh = TensorMesh([h1,h2,h3])
mesh.plotGrid()
plt.show()