From 9bcd7b08a30cfa6baef08ebc9e53dbd47d87b5fe Mon Sep 17 00:00:00 2001 From: Martin Thoma Date: Thu, 7 Feb 2013 12:24:59 +0100 Subject: [PATCH] added comment --- tikz/3d-manhattan-bar-plot/getCoordinates.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tikz/3d-manhattan-bar-plot/getCoordinates.py b/tikz/3d-manhattan-bar-plot/getCoordinates.py index 5c25fd6..77110a1 100644 --- a/tikz/3d-manhattan-bar-plot/getCoordinates.py +++ b/tikz/3d-manhattan-bar-plot/getCoordinates.py @@ -38,7 +38,7 @@ def make3dhistogram(x, y, z, zmin, output): writeCoordinates(file, x[i], y[j], zmin) if __name__ == "__main__": - x = [0,1,2,3,4] - y = [0,1,2,3,4] # <- size of y + x = [0,1,2,3,4] # Whats that good for? Can it be replaced by range(xMax+1)? + y = [0,1,2,3,4] # Whats that good for? Can it be replaced by range(yMax+1)? z = [[2,3,1,0], [0,6,0,0], [1,0,0,4], [0,0,0,0]] createTex(x,y,z)