摘要: # -*- coding:utf-8 -*- import numpy as np from scipy import stats import math import matplotlib as mpl import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D from matplotlib import ... 阅读全文
posted @ 2019-07-24 11:40 喵小喵~ 阅读(9899) 评论(2) 推荐(1) 编辑
摘要: import numpy as np import matplotlib.pyplot as plt import matplotlib as mpl import math #e^x = 1 + x + x^2/2!+... def calc_e_small(x): n = 10 #累乘 cumsum是求和 #1! 2! 3! 4! 5!...10! f =... 阅读全文
posted @ 2019-07-24 09:49 喵小喵~ 阅读(6238) 评论(0) 推荐(0) 编辑