Skip to content

Commit

Permalink
resolves issue #8
Browse files Browse the repository at this point in the history
  • Loading branch information
ewehrle committed Aug 5, 2016
1 parent 4e994d9 commit d9bad2e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions OptHis2HTML.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ def OptHis2HTML(OptName, Alg, AlgOptions, DesOptDir, x0, xL, xU, DesVarNorm, inf
xIterDenorm = np.zeros((nIter + 1, len(xIter[0])))
for y in range(0, nIter + 1):
xIterDenorm[y] = xIter[y]
for y in range(0, nIter + 1):
[xIter[y, :], xLnorm, xUnorm] = normalize(xIterDenorm[y, :],
x0, xL, xU, "xLxU")
# for y in range(0, nIter + 1):
# [xIter[y, :], xLnorm, xUnorm] = normalize(xIterDenorm[y, :],
# x0, xL, xU, "xLxU")
else:
xIter = xIter[:, 0:np.size(xL)]
xIterDenorm = np.zeros(np.shape(xIter))
Expand Down

0 comments on commit d9bad2e

Please sign in to comment.