From cc58c79250e369a6c92597b4f03a9b6c239fdec3 Mon Sep 17 00:00:00 2001 From: JialinLiOSU <32602256+JialinLiOSU@users.noreply.github.com> Date: Mon, 9 Oct 2017 10:37:49 -0400 Subject: [PATCH] Update idw.py --- idw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idw.py b/idw.py index ba357df..6d2b906 100644 --- a/idw.py +++ b/idw.py @@ -5,7 +5,7 @@ def IDW(Z, b): Z: a list of lists where each element list contains four values: X, Y, Value, and Distance to target point. Z can also be a NumPy 2-D array. - b: power of distance + b: power of distanc Output Estimated value at the target location. """