Skip to content

Commit

Permalink
Examples: Fix undefined method in plot_ah_coordiante_velocity.py
Browse files Browse the repository at this point in the history
Thanks Cheng-Hsin Cheng
  • Loading branch information
Sbozzolo committed Mar 28, 2023
1 parent 509ed40 commit ec1ed49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/bins/plot_ah_coordinate_velocity.py
Expand Up @@ -91,7 +91,7 @@
plt.plot(vel[0], label=r"$v^x$")
plt.plot(vel[1], label=r"$v^y$")
plt.plot(vel[2], label=r"$v^z$")
plt.plot(vel.magn(), label=r"$\|v\|$")
plt.plot(vel.norm(), label=r"$\|v\|$")
plt.legend()

add_text_to_corner(f"AH {ah}", anchor="SW", offset=0.005)
Expand Down

0 comments on commit ec1ed49

Please sign in to comment.