Skip to content

Commit

Permalink
update to opthis
Browse files Browse the repository at this point in the history
  • Loading branch information
e-dub committed Jul 27, 2019
1 parent 2203681 commit 7256f9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DesOptPy/OptHis2HTML.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,9 @@ def OptHis2HTML(OptName, Alg, AlgOptions, DesOptDir, x0, xL, xU, gc, DesVarNorm,
# [xIter[y, :], xLnorm, xUnorm] = normalize(xIterDenorm[y, :],
# x0, xL, xU, "xLxU")
else:
xIter = xIter[0:np.size(xL),:]
xIter = xIter[0:np.size(xL), :]
xIterDenorm = np.zeros(np.shape(xIter))
for ii in range(len(xIterDenorm)):
for ii in range(np.shape(xIterDenorm)[1]):
xIterDenorm[:, ii] = denormalize(xIter[:, ii], x0, xL, xU, DesVarNorm)
#xIterDenorm = np.zeros((nIter + 1, len(x0)))
# for y in range(0, nIter + 1):
Expand Down

0 comments on commit 7256f9d

Please sign in to comment.