上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 124 下一页
摘要: manjaro下使用ccs12.1在向板子写入程序时,出现MSP430: Error initializing emulator: MSP-FET430UIF is already in use错误的解决办法: 0、安装ccs时提示有三个库缺失,我只是安装了一个gconf sudo pacman - 阅读全文
posted @ 2022-10-26 22:43 叕叒双又 阅读(396) 评论(0) 推荐(0)
摘要: 文件在:/home/anatomy/.local/share/applications 1 总计 288 2 -rw 1 anatomy anatomy 684 10月13日 20:42 0ad.desktop 3 -rw 1 anatomy anatomy 427 10月21日 17:00 仿真程 阅读全文
posted @ 2022-10-26 15:48 叕叒双又 阅读(230) 评论(0) 推荐(0)
摘要: 1、查看库是否存在: locate libcanberra如果不存在,安装库;sudo pacman -S canberra如果不存在命令,安装软件并更新数据库;sudo pacman -S mlocate && updatedb2、建立软链接:文件存在只是找不到,建立个软链接就行了。(这里matl 阅读全文
posted @ 2022-10-22 11:24 叕叒双又 阅读(1726) 评论(0) 推荐(0)
摘要: 提示错误类似: bin/glnxa64/MATLABWindow: symbol lookup error: somelibrary: undefined symbol: FT_Get_Var_Blend_Coordinates or: bin/glnxa64/MATLABWindow: symbo 阅读全文
posted @ 2022-10-22 11:17 叕叒双又 阅读(615) 评论(0) 推荐(0)
摘要: linux下安装完matlab2022a后,之后,每次启动都会有: MESA-LOADER: failed to open iris: /opt/Polyspace/R2022a/bin/glnxa64/../../sys/os/glnxa64/libstdc++.so.6: version `GL 阅读全文
posted @ 2022-10-21 16:12 叕叒双又 阅读(1118) 评论(0) 推荐(0)
摘要: 泰勒公式 泰勒公式是将一个在x=x0处具有n阶导数的函数f(x)利用关于(x-x0)的n次多项式来逼近函数的方法。 若函数f(x)在包含x0的某个闭区间[a,b]上具有n阶导数,且在开区间(a,b)上具有(n+1)阶导数,则对闭区间[a,b]上任意一点x,成立下式: 其中 表示f(x)的n阶导数,等 阅读全文
posted @ 2022-10-18 11:34 叕叒双又 阅读(1419) 评论(0) 推荐(0)
摘要: 先用xev程序获取按键的keycode的值,剩下的就是自己修改即可。 修改.Xmodmap文件,内容为: !keycode 9=asciitilde grave keycode 9=asciitilde grave !keycode 22=F3 Print !keycode 49=F12 Print 阅读全文
posted @ 2022-10-17 00:19 叕叒双又 阅读(89) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-10-13 11:43 叕叒双又 阅读(3) 评论(0) 推荐(0)
摘要: 0.、sudo cd /usr/local/MATLAB/R2022a/cefclient/sys/os/glnxa64/ && sudo mkdir exclude pwd /usr/local/MATLAB/R2022a/cefclient/sys/os/glnxa64/exclude/ 1、c 阅读全文
posted @ 2022-10-12 18:05 叕叒双又 阅读(221) 评论(0) 推荐(0)
摘要: 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 叕叒双又 阅读(556) 评论(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 叕叒双又 阅读(642) 评论(0) 推荐(0)
摘要: 原文链接:https://blog.csdn.net/Nirvana_Tai/article/details/105409311,随后整理验证,再补充 (一) 前言 PID算法在工业应用中随处可见。大学期间,想做各类科创也少不了PID算法的身影。PID除了需要理解原理,用合理的代码实线PID算法也让 阅读全文
posted @ 2022-10-06 21:37 叕叒双又 阅读(2084) 评论(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 叕叒双又 阅读(3591) 评论(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 叕叒双又 阅读(6115) 评论(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 叕叒双又 阅读(127) 评论(0) 推荐(0)
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 124 下一页