From 9ae281f368e33897988c241d7ddacf2645767c05 Mon Sep 17 00:00:00 2001 From: rowanc1 Date: Tue, 18 Feb 2014 12:53:22 -0800 Subject: [PATCH] name space bug. --- SimPEG/Mesh/TensorView.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SimPEG/Mesh/TensorView.py b/SimPEG/Mesh/TensorView.py index d8a215b7..b91f5fae 100644 --- a/SimPEG/Mesh/TensorView.py +++ b/SimPEG/Mesh/TensorView.py @@ -316,7 +316,7 @@ class TensorView(object): if normalizeVector: length = np.sqrt(U**2+V**2) U, V = U/length, V/length - out += (quiver( tM.gridCC[:,0], tM.gridCC[:,1], U, V),) + out += (plt.quiver( tM.gridCC[:,0], tM.gridCC[:,1], U, V),) if grid: xXGrid = np.c_[tM.vectorNx,tM.vectorNx,np.nan*np.ones(tM.nNx)].flatten()