上一页 1 2 3 4 5 6 ··· 10 下一页
  2024年10月28日
摘要: `import pylab as plt import numpy as np x=np.linspace(-4,4,100); x,y=np.meshgrid(x,x) z=50*np.sin(x+y); ax=plt.axes(projection='3d') ax.plot_surface(x 阅读全文
posted @ 2024-10-28 12:21 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `import pylab as plt import numpy as np ax=plt.axes(projection='3d') #设置三维图形模式 z=np.linspace(-50, 50, 1000) x=z2*np.sin(z); y=z2*np.cos(z) plt.plot(x, 阅读全文
posted @ 2024-10-28 12:20 VVV1 阅读(2) 评论(0) 推荐(0) 编辑
摘要: `import pylab as plt import numpy as np plt.rc('text', usetex=True) #调用tex字库 y1=np.random.randint(2, 5, 6); y1=y1/sum(y1); plt.subplot(2, 2, 1); str=[ 阅读全文
posted @ 2024-10-28 12:20 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `import pandas as pd import pylab as plt plt.rc('font',family='SimHei') #用来正常显示中文标签 plt.rc('font',size=16) #设置显示字体大小 a=pd.read_excel("data2_52.xlsx",h 阅读全文
posted @ 2024-10-28 12:19 VVV1 阅读(5) 评论(0) 推荐(0) 编辑
摘要: `import pandas as pd import pylab as plt plt.rc('font',family='SimHei') #用来正常显示中文标签 plt.rc('font',size=16) #设置显示字体大小 a=pd.read_excel("data2_52.xlsx", 阅读全文
posted @ 2024-10-28 12:19 VVV1 阅读(3) 评论(0) 推荐(0) 编辑
摘要: `import numpy as np import sympy as sp a = np.identity(4) #单位矩阵的另一种写法 b = np.rot90(a) c = sp.Matrix(b) print('特征值为:', c.eigenvals()) print('特征向量为:\n', 阅读全文
posted @ 2024-10-28 12:18 VVV1 阅读(3) 评论(0) 推荐(0) 编辑
摘要: `import sympy as sp sp.var('x1,x2') s=sp.solve([x12+x22-1,x1-x2],[x1,x2]) print(s) print("学号:3005")` 阅读全文
posted @ 2024-10-28 12:17 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `import sympy as sp a, b, c, x=sp.symbols('a,b,c,x') x0=sp.solve(ax**2+bx+c, x) print(x0) print("学号:3005")` 阅读全文
posted @ 2024-10-28 12:16 VVV1 阅读(1) 评论(0) 推荐(0) 编辑
摘要: `from scipy.sparse.linalg import eigs import numpy as np a = np.array([[1, 2, 3], [2, 1, 3], [3, 3, 6]], dtype=float) #必须加float,否则出错 b, c = np.linalg. 阅读全文
posted @ 2024-10-28 12:16 VVV1 阅读(8) 评论(0) 推荐(0) 编辑
摘要: `from scipy.optimize import least_squares import numpy as np a=np.loadtxt('data2_47.txt') x0=a[0]; y0=a[1]; d=a[2] fx=lambda x: np.sqrt((x0-x[0])2+(y0 阅读全文
posted @ 2024-10-28 12:15 VVV1 阅读(7) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页