上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 124 下一页
摘要: 一个非常好的开源a可视化图标库,相当的不错。 https://echarts.apache.org/zh/index.html,有例子,有教程,那是相当的震撼。逼着我学了几天的javascript,感觉值得。 阅读全文
posted @ 2022-10-03 09:35 叕叒双又 阅读(52) 评论(0) 推荐(0)
摘要: 第一种方式,直接到https://convertio.co/zh/epub-pdf/,网站直接转即可,如果文件超过100M,就不行了。而且支持多个文件同时转换,不注册可以同时转2个,速度很快,非常不错。 第二种方式,使用软件calibre本地转换 1.首先我们需要用到calibre这款软件; 2.进 阅读全文
posted @ 2022-10-01 21:54 叕叒双又 阅读(3341) 评论(0) 推荐(0)
摘要: 1、进入目录 cd /usr/share/applications 2、建立并编辑图标文件 sudo touch matlab.desktop sudo vim matlab.desktop,将以下内容输入并保存: #!/usr/bin/env xdg-open [Desktop Entry] Na 阅读全文
posted @ 2022-09-28 11:31 叕叒双又 阅读(117) 评论(0) 推荐(0)
摘要: 1、复制字体到系统目录:sudo cp winfonts/simhei.ttf /usr/share/fonts/TTF/ 2、复制字体到matplotlib的字体目录中:sudo cp winfonts/simhei.ttf /usr/lib/python3.10/site-packages/ma 阅读全文
posted @ 2022-09-25 17:41 叕叒双又 阅读(455) 评论(0) 推荐(0)
摘要: 代码很简单: 1 import sys 2 from pathlib import Path 3 from numpy import fromfile, uint8 # pip install numpy 4 5 rootDir = Path(sys.argv[0]).resolve().paren 阅读全文
posted @ 2022-09-24 08:54 叕叒双又 阅读(227) 评论(0) 推荐(0)
摘要: 我的是manjaro20220922 设置-工作区行为-桌面特效-缩放,取消无障碍功能下的缩放,就可以取消放大显示桌面,视图跟随鼠标移动。 阅读全文
posted @ 2022-09-22 22:30 叕叒双又 阅读(1299) 评论(0) 推荐(0)
摘要: 线性代数中的伴随矩阵,将按照下面的步骤进行: (1) 了解什么是方阵的行列式; (2) 方阵行列式的运算规则; (3) 伴随矩阵得定义; (4) 求方阵的伴随矩阵; (5) 牢记伴随矩阵的特殊定义; 让我们首先了解方阵行列式的定义,如下图: 了解方阵行列式的运算规则,如下图: 得出方阵的伴随矩阵定义 阅读全文
posted @ 2022-09-16 09:56 叕叒双又 阅读(28877) 评论(0) 推荐(0)
摘要: 在看《机械振动基础》时,看到老师的有一附图 试着自己做下,v1代码为: 1 from math import * 2 from numpy import * 3 import matplotlib.pyplot as plt 4 5 x = arange(0, math.pi, 0.00001) 6 阅读全文
posted @ 2022-09-15 11:08 叕叒双又 阅读(40) 评论(0) 推荐(0)
摘要: 加入要输入以下公式: 1、用python的sympy,输入python进入python环境,导入必要的库 from sympy import symbols 2、根据sympy的要求将公式变为: Integral(cos(x)**2, (x, 0, pi)),这一步比较简单,不会的同学,可以找一下s 阅读全文
posted @ 2022-09-14 09:49 叕叒双又 阅读(390) 评论(0) 推荐(0)
摘要: 如题:https://pixabay.com/ guochaoxxl80 阅读全文
posted @ 2022-09-07 15:58 叕叒双又 阅读(75) 评论(0) 推荐(0)
摘要: 1、得益于古登堡计划,https://www.gutenberg.org/ 2、在quick search中输入书名,搜索即可,就可以下载吧 3、看《Python编程从入门到实践(第2版)》才知道的,原来还可以这样。 阅读全文
posted @ 2022-09-06 08:35 叕叒双又 阅读(98) 评论(0) 推荐(0)
摘要: 1、win + R, services.msc 2. 找到SysMain,将启动类型改成禁用 阅读全文
posted @ 2022-09-05 22:27 叕叒双又 阅读(393) 评论(0) 推荐(0)
摘要: 代码1: 1 numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9] 2 for number in numbers: 3 if number == 1: 4 res='st' 5 if number == 2: 6 res='nd' 7 if number == 3: 8 re 阅读全文
posted @ 2022-09-04 17:06 叕叒双又 阅读(591) 评论(0) 推荐(0)
摘要: table是一种有行和列类似于表的数据结构,每一个都具有易于记忆的标签。表的创建需要有相同长度,且是列的存储方式。使用table()函数创建,以下假设记录病人的姓名、身高和体重等信息; 1.创建table,使用table()函数,必须使用’RowNames',选定第一列数据 >> names = { 阅读全文
posted @ 2022-09-03 15:42 叕叒双又 阅读(1032) 评论(0) 推荐(0)
摘要: categorical中存储有限、可数不同的可能值;使用categorical函数 1.categorical定义: >> icecreamfaves = categorical({'Vanilla', 'Chocolate', ... 'Chocolate', 'Rum Raisin', 'Van 阅读全文
posted @ 2022-09-03 15:20 叕叒双又 阅读(1332) 评论(0) 推荐(1)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 124 下一页