From 5a667090222121a7c9e1ef3075318b9be0018086 Mon Sep 17 00:00:00 2001 From: rowanc1 Date: Sat, 12 Jul 2014 18:38:53 -0500 Subject: [PATCH] updates to maps docs --- docs/api_Maps.rst | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/docs/api_Maps.rst b/docs/api_Maps.rst index cf33b7ad..0ab32024 100644 --- a/docs/api_Maps.rst +++ b/docs/api_Maps.rst @@ -119,7 +119,6 @@ When these are used in the inverse problem, this is extremely important!! expMap.test(m, plotIt=True) - The API ======= @@ -178,8 +177,8 @@ Mesh to Mesh Map v = Utils.mkvc(V) modh = Maps.Mesh2Mesh([M,M2]) modH = Maps.Mesh2Mesh([M2,M]) - H = modH.transform(v) - h = modh.transform(H) + H = modH * v + h = modh * H ax = plt.subplot(131) M.plotImage(v, ax=ax) ax.set_title('Fine Mesh (Original)') @@ -212,10 +211,3 @@ be sure to test that the derivative is correct. :members: :undoc-members: - -Non Linear Map --------------- - -.. autoclass:: SimPEG.Maps.NonLinearMap - :members: - :undoc-members: