摘要: 帮助来源:https://tex.stackexchange.com/questions/76455/converted-xxx-eps-converted-to-pdf-not-found sudo apt install texlive-font-utils 问题解决。 帮助来源:https:/ 阅读全文
posted @ 2022-03-05 09:50 zhaopw5 阅读(251) 评论(0) 推荐(0) 编辑
摘要: LaTeX表格自动调整大小 **帮助来源:**https://tex.stackexchange.com/questions/10863/is-there-a-way-to-slightly-shrink-a-table-including-font-size-to-fit-within-th \usepackage{adju 阅读全文
posted @ 2021-12-22 15:32 zhaopw5 阅读(931) 评论(0) 推荐(0) 编辑
摘要: Ubuntu 18 安装 LaTeX Ubuntu18 安装 LaTex 1.1 一种方法:用在线安装器 install-tl 安装 此方法受网速影响比较大(不推荐),最好用清华镜像:https://mirrors.tuna.tsinghua.edu.cn/help/CTAN/。 下载链接:https://mirror.ctan.org 阅读全文
posted @ 2021-12-19 12:18 zhaopw5 阅读(437) 评论(0) 推荐(0) 编辑
摘要: Model_Plot 1. 在定义函数的时候,用 numpy 而尽量不用 math math 换成 numpy 后: 2. 重复的程序预先定义好,不要每次写一大段 完整程序: import numpy as np import matplotlib.pyplot as plt def Band(x,k1,a,b,e): 阅读全文
posted @ 2021-07-18 17:06 zhaopw5 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 画布分块 数据文件: 程序: import numpy as np import pandas as pd import matplotlib.pyplot as plt data = pd.read_excel('compare.xlsx') time = (data['start']+data['stop 阅读全文
posted @ 2021-07-16 09:37 zhaopw5 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 一张图上展示两种物理量,需要用不同的标度。 左右两个坐标轴, 工具:Matplotlib 下的:HostAxes, ParasiteAxes 阅读全文
posted @ 2021-07-16 09:33 zhaopw5 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 模型参数数据在txt文件中 import matplotlib.pyplot as plt import numpy as np parameters = np.loadtxt('example.txt',dtype=str) fig, axs = plt.subplots(nrows=2, nco 阅读全文
posted @ 2021-04-10 17:28 zhaopw5 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 用 Astropy 拟合数据(一) astropy官网链接 步骤:获取数据 > 拟合 一:直线拟合 导入需要的模块 import numpy as np import matplotlib.pyplot as plt from astropy.modeling import models, fitt 阅读全文
posted @ 2021-04-09 22:48 zhaopw5 阅读(502) 评论(0) 推荐(0) 编辑