Skip to content

Commit

Permalink
docstring: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
taiga4112 committed Jan 11, 2021
1 parent d532318 commit b0109cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shipmmg/ship_obj_3dof.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def load_simulation_result(
>>> result = kt.simulate_kt(kt_params, time_list, delta_list)
>>> u_list = np.full(len(time_list), 20 * (1852.0 / 3600))
>>> v_list = np.zeros(len(time_list))
>>> r_list = result.T[0]
>>> r_list = result[0]
>>> ship = ShipObj3dof(L = 180, B = 20)
>>> ship.load_simulation_result(time_list, u_list, v_list, r_list)
>>> print(ship.x, ship.y, ship.psi)
Expand Down

0 comments on commit b0109cb

Please sign in to comment.