05 2020 档案

摘要:我们在visual studio的属性界面中经常看到$(SolutionDir)、$(Configuration)、$(ProjectName)等宏,可以通过以下sao操作查看: ref: https://blog.csdn.net/caoshangpa/article/details/536715 阅读全文
posted @ 2020-05-17 17:53 JadeCicada 阅读(2141) 评论(0) 推荐(0) 编辑
摘要:Reason1: 原因是当前工程是Debug/Release版本,而引用的库文件时Release/Debug版本,只需要把当前的Debug/Release模式改成Release/Debug模式就可以了,或者打开解决方案--》属性--》链接器--》输入--》附加依赖项中引用debug版本的lib文件名 阅读全文
posted @ 2020-05-07 07:56 JadeCicada 阅读(490) 评论(0) 推荐(0) 编辑
摘要:2020-05-04 10:08:10 Summary: 现代控制理论中的状态方程;状态方程的离散化、近似离散化; C++算法实现; 实际应用:2自由度1/4车辆悬架垂向振动模型; 建模: 弹簧阻尼系统,取系统处于静平衡的位置为原点,以消除重力的参与。O1-O2为水平基准,即m1的垂向位移为z1, 阅读全文
posted @ 2020-05-07 07:00 JadeCicada 编辑
摘要:1 交大硕士时的教材: 阅读全文
posted @ 2020-05-04 10:03 JadeCicada 阅读(203) 评论(0) 推荐(0) 编辑
摘要:2020-05-04 09:37:31 ASAM(德国自动化及测量系统标准协会)制订并推广的OpenX标准正在引领自动驾驶场景模拟仿真测试标准的发展。 ASAM协会:制定、协调仿真领域自动驾驶标准 , web: https://www.asam.net/ 德国自动化及测量系统标准协会(ASAM)是一 阅读全文
posted @ 2020-05-04 09:36 JadeCicada 阅读(2543) 评论(0) 推荐(0) 编辑
摘要:1) a.+?d表示:以“a”开始,后面是除了回车以外的其它字符,最后以“d”结束。 \[5531\].+?3903 表示:以[5531]开始,3903结尾的那一行,在notepad++中,[]表示匹配其中任意字符,如果要搜索[],要加转义字符“\”。 Ref: https://blog.csdn. 阅读全文
posted @ 2020-05-03 17:00 JadeCicada 阅读(433) 评论(0) 推荐(0) 编辑
摘要:https://www.pianshen.com/article/7437339606/ 阅读全文
posted @ 2020-05-03 16:51 JadeCicada 阅读(516) 评论(0) 推荐(0) 编辑
摘要:2020-05-03 git clean命令用来从你的工作目录中删除所有没有tracked过的文件 git clean经常和git reset --hard一起结合使用,git reset只影响被track过的文件, 所以需要clean来删除没有track过的文件. 结合使用这两个命令能让你的工作目 阅读全文
posted @ 2020-05-03 16:47 JadeCicada 阅读(208) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/bytxl/article/details/48287499 FILE之GLOB:相对路径 https://blog.csdn.net/siwen0/article/details/102564310 阅读全文
posted @ 2020-05-03 16:38 JadeCicada 阅读(133) 评论(0) 推荐(0) 编辑
摘要:git stash save git stash list git stash show git stash apply stash@{0} //0为序号, git stash pop stash@{0} git stash drop stash@{0} :丢弃stash@{$num}存储,从列表中 阅读全文
posted @ 2020-05-03 15:44 JadeCicada 阅读(176) 评论(0) 推荐(0) 编辑
摘要:Git默认配置为忽略大小写,解决方法 git config core.ignorecase false 阅读全文
posted @ 2020-05-03 14:56 JadeCicada 阅读(227) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示