上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 117 下一页
摘要: https://ww2.mathworks.cn/matlabcentral/answers/364551-why-is-matlab-unable-to-run-the-matlabwindow-application-on-linux Due to some library compatibil 阅读全文
posted @ 2022-10-12 17:47 叕叒双又 阅读(454) 评论(0) 推荐(0) 编辑
摘要: Can't reload'/xx/xx/xx/libmwdastudio.so The reason for the problem: Matlab cannot load the font to display $ MATLAB / bin / glnxa64 / libfreetype.so.6 阅读全文
posted @ 2022-10-12 17:28 叕叒双又 阅读(521) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/Nirvana_Tai/article/details/105409311,随后整理验证,再补充 (一) 前言 PID算法在工业应用中随处可见。大学期间,想做各类科创也少不了PID算法的身影。PID除了需要理解原理,用合理的代码实线PID算法也让 阅读全文
posted @ 2022-10-06 21:37 叕叒双又 阅读(1006) 评论(0) 推荐(0) 编辑
摘要: 原文:https://www.webhek.com/post/html-color-codes-and-names/ HTML颜色代码是由16进制的三对数字分别表示红、绿、蓝(#RRGGBB)三种基本色。以红颜色为例,红色的代码是 #FF0000, 代码组成为’255′ 红, ‘0’ 绿, 和 ‘0 阅读全文
posted @ 2022-10-06 20:58 叕叒双又 阅读(2989) 评论(0) 推荐(0) 编辑
摘要: 使用linux下xev可以获取键盘上所有按键的键值,记录如下: 字母和数字键的键码值 (keyCode)按键 键码 按键 键码 按键 键码 按键 键码A 65 J 74 S 83 1 49B 66 K 75 T 84 2 50C 67 L 76 U 85 3 51D 68 M 77 V 86 4 5 阅读全文
posted @ 2022-10-04 09:41 叕叒双又 阅读(4809) 评论(0) 推荐(0) 编辑
摘要: 代码很简单,直接上代码: <!DOCTYPE html> <html> <head> <title>Keyboard input</title> </head> <body> <canvas id='canvas' width='700' height='700'></canvas> <script 阅读全文
posted @ 2022-10-03 09:56 叕叒双又 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 一个非常好的开源a可视化图标库,相当的不错。 https://echarts.apache.org/zh/index.html,有例子,有教程,那是相当的震撼。逼着我学了几天的javascript,感觉值得。 阅读全文
posted @ 2022-10-03 09:35 叕叒双又 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 第一种方式,直接到https://convertio.co/zh/epub-pdf/,网站直接转即可,如果文件超过100M,就不行了。而且支持多个文件同时转换,不注册可以同时转2个,速度很快,非常不错。 第二种方式,使用软件calibre本地转换 1.首先我们需要用到calibre这款软件; 2.进 阅读全文
posted @ 2022-10-01 21:54 叕叒双又 阅读(3013) 评论(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 叕叒双又 阅读(75) 评论(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 叕叒双又 阅读(343) 评论(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 叕叒双又 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 我的是manjaro20220922 设置-工作区行为-桌面特效-缩放,取消无障碍功能下的缩放,就可以取消放大显示桌面,视图跟随鼠标移动。 阅读全文
posted @ 2022-09-22 22:30 叕叒双又 阅读(853) 评论(0) 推荐(0) 编辑
摘要: 线性代数中的伴随矩阵,将按照下面的步骤进行: (1) 了解什么是方阵的行列式; (2) 方阵行列式的运算规则; (3) 伴随矩阵得定义; (4) 求方阵的伴随矩阵; (5) 牢记伴随矩阵的特殊定义; 让我们首先了解方阵行列式的定义,如下图: 了解方阵行列式的运算规则,如下图: 得出方阵的伴随矩阵定义 阅读全文
posted @ 2022-09-16 09:56 叕叒双又 阅读(26777) 评论(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 叕叒双又 阅读(26) 评论(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 叕叒双又 阅读(313) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 117 下一页