网站首页 站内搜索

搜索结果

查询Tags标签: equil,共有 1条记录
  • Python for Differential Equations

    from sympy import * import numpy as npc, t = symbols(c, t)expr = c*(4 - c) # Solve c(4 - c) = 0: equil = solve(expr, c) print(equil) ys = np.arange(-2, 7) # how to generate an appropriate array includes equil automatically? dys = np.array([expr.subs(…

    2021/6/26 11:56:54 人评论 次浏览
扫一扫关注最新编程教程