Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/documentation_improvemen…
Browse files Browse the repository at this point in the history
…ts' into feature/documentation_improvements

# Conflicts:
#	src/UQpy/reliability/taylor_series/SORM.py
  • Loading branch information
connor-krill committed Jul 26, 2023
2 parents 5b61847 + 8324ebe commit 4435f59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/UQpy/reliability/taylor_series/SORM.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def _run(self):
matrix_a[:, 0] = self.form_object.alpha

q = np.zeros(shape=(self.dimension, self.dimension))
q[:, 0] = matrix_a[:, 0] / np.linalg.norm()
q[:, 0] = matrix_a[:, 0] / np.linalg.norm(matrix_a[:, 0])

for i in range(1, self.dimension):
ai = matrix_a[:, i]
Expand Down

0 comments on commit 4435f59

Please sign in to comment.