上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 329 下一页
摘要: VScdoe将字体修改为宋体 新細明體:PMingLiU 細明體:MingLiU 標楷體:DFKai-SB 黑体:SimHei 宋体:SimSun 新宋体:NSimSun 仿宋:FangSong 楷体:KaiTi 仿宋_GB2312:FangSong_GB2312 楷体_GB2312:KaiTi_G 阅读全文
posted @ 2022-11-14 10:27 bH1pJ 阅读(46) 评论(0) 推荐(0) 编辑
摘要: Scatter plot with histograms https://matplotlib.org/stable/gallery/lines_bars_and_markers/scatter_hist.html#sphx-glr-gallery-lines-bars-and-markers-sc 阅读全文
posted @ 2022-11-14 10:27 bH1pJ 阅读(10) 评论(0) 推荐(0) 编辑
摘要: Python生成gussian图像 import numpy as np import matplotlib.pyplot as plt def dnorm(x, mu, sd): return 1/(np.sqrt(2 * np.pi) * sd) * np.e ** (-np.power((x 阅读全文
posted @ 2022-11-14 10:27 bH1pJ 阅读(24) 评论(0) 推荐(0) 编辑
摘要: Python函数,传递的参数是引用还是参数的复制? 坑 https://cloud.tencent.com/developer/news/709436 如果你接触过其他的编程语言,比如 C/C++,很容易想到,常见的参数传递有 2 种:值传递和引用传递。所谓值传递,通常就是拷贝参数的值,然后传递给函 阅读全文
posted @ 2022-11-14 10:26 bH1pJ 阅读(197) 评论(0) 推荐(0) 编辑
摘要: Python对二值图进行膨胀处理 可以多膨胀几次: mask2 = cv.dilate(mask1, kernel) 阅读全文
posted @ 2022-11-14 10:25 bH1pJ 阅读(26) 评论(0) 推荐(0) 编辑
摘要: Python 的Int的最大值是多少? 非常大 阅读全文
posted @ 2022-11-14 10:25 bH1pJ 阅读(118) 评论(0) 推荐(0) 编辑
摘要: Latex对图片的自动排布如何调整 Latex对图片的排版令人不满意,该如何对这些图片的位置进行调整? 参考资料: https://blog.csdn.net/king0406/article/details/51252133 https://blog.csdn.net/lqhbupt/articl 阅读全文
posted @ 2022-11-14 10:24 bH1pJ 阅读(597) 评论(0) 推荐(0) 编辑
摘要: Vscode and overleaf 是否有相应的插件? 非常遗憾哈,Vscode 没有overleaf 的插件; 阅读全文
posted @ 2022-11-14 10:24 bH1pJ 阅读(47) 评论(0) 推荐(0) 编辑
摘要: Python numpy得到一个信号的方差,标准差 标准差 np.std(old) 方差 np.var(old) 阅读全文
posted @ 2022-11-13 10:05 bH1pJ 阅读(20) 评论(0) 推荐(0) 编辑
摘要: Python numpy 开N次方 https://blog.csdn.net/u012253191/article/details/77823429 利用pow(a, b)函数即可。需要开a的r次方则pow(a, 1/r)。 np.power(a,b) 阅读全文
posted @ 2022-11-13 10:04 bH1pJ 阅读(495) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 329 下一页