Skip to content

Commit

Permalink
fixed syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
tisimst committed Sep 13, 2013
1 parent adcb4db commit b756ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyDOE/build_regression_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def build_regression_matrix(H, model, build=None):
VectorMode = False

for i in xrange(nb_var):
for j in xrange(ListOfTokens.shape[0])
for j in xrange(ListOfTokens.shape[0]):
ListOfTokens[j] = ListOfTokens[j].replace(
'x' + str(0)*(size_index - len(str(i))) + str(i),
'H[i,' + str(i) + ')')
Expand Down

0 comments on commit b756ffc

Please sign in to comment.