diff --git a/python/dune/plotting.py b/python/dune/plotting.py index 1c6ee25e2ede32bfe845cf13f5e37d23c7f68e56..33e2d18c1973e13af45776b63004fbff7eade295 100644 --- a/python/dune/plotting.py +++ b/python/dune/plotting.py @@ -135,8 +135,7 @@ if addPlot: else: d = v[component] data += [d] - mind = amin(d) - maxd = amax(d) + data = np.array(data) minData = amin(data) maxData = amax(data) @@ -187,7 +186,6 @@ if addPlot: solution = None if not grid.dimension == 2: raise ValueError("inline plotting so far only available for 2d grids") - return if figure is None: figure = pyplot.figure(figsize=figsize) @@ -219,7 +217,6 @@ if addPlot: solution = None if not grid.dimension == 2: raise ValueError("inline plotting so far only available for 2d grids") - return if figure is None: figure = pyplot.figure(figsize=figsize) @@ -248,7 +245,6 @@ if addPlot: solution = None if not grid.dimension == 2: raise ValueError("inline plotting so far only available for 2d grids") - return if not show: show = range(solution.dimRange)