Skip to content
Snippets Groups Projects
Commit 8bb25af4 authored by Christoph Groth's avatar Christoph Groth
Browse files

fix "closed_system.py" tutorial script

The problem was introduced in commit 7c802539.
parent e199cc4d
No related branches found
No related tags found
No related merge requests found
......@@ -96,8 +96,7 @@
def sorted_eigs(ev):
evals, evecs = ev
- evals, evecs = map(np.array, zip(*sorted(zip(evals, evecs.transpose())))
+ evals, evecs = map(np.array, zip(*sorted(zip(evals, evecs.transpose()))))
evals, evecs = map(np.array, zip(*sorted(zip(evals, evecs.transpose()))))
return evals, evecs.transpose()
#HIDDEN_BEGIN_wave
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment