From 2ab30909e5c6db519c81005bcd7e19f209a212cd Mon Sep 17 00:00:00 2001 From: jiaweizhuang Date: Sat, 3 Aug 2019 17:34:40 -0700 Subject: [PATCH] rename A to weights in docs --- doc/Reuse_regridder.ipynb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/Reuse_regridder.ipynb b/doc/Reuse_regridder.ipynb index 5b8a40e..83b8d02 100644 --- a/doc/Reuse_regridder.ipynb +++ b/doc/Reuse_regridder.ipynb @@ -339,7 +339,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "An xESMF regridder has an attribute `A`, i.e. the weight matrix." + "An xESMF regridder has an attribute `weights`, i.e. the weight matrix." ] }, { @@ -360,7 +360,7 @@ } ], "source": [ - "regridder.A" + "regridder.weights" ] }, { @@ -397,7 +397,7 @@ } ], "source": [ - "plt.spy(regridder.A)\n", + "plt.spy(regridder.weights)\n", "plt.xlabel('input grid indices')\n", "plt.ylabel('output grid indices')" ]