Skip to content

Commit

Permalink
fix(deps): forgot one package
Browse files Browse the repository at this point in the history
  • Loading branch information
CallumJHays committed Jul 2, 2023
1 parent d88975d commit 0e330d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mathpad/simulate_dynamic_system.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
from typing import Collection, Set, List, Optional, Tuple
from typing import Collection, Set, List, Tuple
from itertools import zip_longest

import sympy
import numpy as np
from sympy.core.function import Function, AppliedUndef
from sympy import Derivative
import plotly.graph_objects as go
from sympy.utilities.lambdify import lambdify
from scipy.integrate import RK45

Expand Down Expand Up @@ -39,6 +38,7 @@ def simulate_dynamic_system(
"simulates a differential system specified by dynamics_equations from initial conditions at x_axis=0 (typically t=0) to x_final"
from IPython.display import display
import plotly.io as pio
import plotly.graph_objects as go
from tqdm import tqdm

verbose = verbose or explain
Expand Down

0 comments on commit 0e330d9

Please sign in to comment.