- 博客(12)
- 收藏
- 关注
原创 python matplotlib 画图归类(持续更新)
图例matplotlib.pyplot.legend: https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.legend.html#matplotlib.pyplot.legendmatplotlib.axes.Axes.legend:https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.legend.html#matplotlib.pyplot.legendLege
2021-04-21 11:03:47 484
原创 python读取文件例子
利用python读取文本文件举例:profileData = []file_object = open('profile.txt')for line in file_object: profileData.append(line)file_object.close()
2022-02-24 15:40:22 488
原创 numpy删除特定行或列
numpy删除特定行或列函数numpy.delete(arr, obj, axis=None)用法objslice, int or array of intsIndicate indices of sub-arrays to remove along the specified axisaxisint, optionalaxis = 0 删除选中行;axis = 1 删除选中列;axis = None 数组展开,flattened例子np.delete(arr, [1,
2021-08-07 11:37:40 807
原创 linux ssh登陆服务器在客户端(本地)显示图形界面
本篇文章前提是客户端(本地)能够成功ssh至服务器端(包括使用ipv6地址)。要在客户端(本地)能够打开图片,需要做以下配置:客户端(本地)配置编辑 /etc/ssh/ssh_config文件sudo vi /etc/ssh/ssh_config修改其中片段如下:Host * ForwardAgent yes ForwardX11 yes ForwardX11Trusted yes服务器端配置1.编辑 /etc/ssh/sshd_config文件sudo vi /
2021-04-05 17:36:27 778
原创 shell格式化输出 printf 的例子(包括awk)
直接使用,与echo功能类似:printf "%10s %10s %10s\n" $name1 $name2 $name3在awk中使用:cat confirmedNullClass.list | awk '{printf("mkdir SN/%s\n",$1)}' | bash
2021-04-01 11:15:15 142
原创 (skill) python将非空字符串解读为True
(skill) 在 if 后,python将非空字符串解读为True.例子:>>> a='1'>>> if a:... print("not empty")... else:... print("empty")...not empty>>>>>> a=''>>> if a:... print("not empty")... else:... print("em
2021-03-19 17:59:13 361
原创 Matlab画箭头
Matlab画箭头画箭头:用annotation函数。annotation(lineType,x,y) 创建一个在当前图窗中的两个点之间延伸的线条或箭头注释。lineType为‘arrow’画箭头。x 和 y 分别指定为 [x_begin x_end] 和 [y_begin y_end] 形式的二元素向量。但注意每个值小于1,是相对于OuterPosition,而不是position,所以需...
2020-03-01 11:46:56 3018 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人