02 2019 档案

摘要:一个小程序,在编译的时候出错,原来使用的编译命令是 g++: error: unrecognized command line option ‘ std=C++11’ 修改为使用g++的绝对路径 `/usr/bin/g++ std=c++11 array.cpp o array.exe` 阅读全文

posted @ 2019-02-27 12:04 lion_zheng 阅读(5123) 评论(0) 推荐(1)

摘要:``` sudo apt-get install cheese ``` 阅读全文

posted @ 2019-02-23 21:58 lion_zheng 阅读(367) 评论(0) 推荐(0)

摘要:使用百分比描述尺寸 使用宽度描述尺寸 没有尺寸描述 或 阅读全文

posted @ 2019-02-22 18:54 lion_zheng 阅读(1668) 评论(0) 推荐(0)

摘要:Step1 先用 命令查看能够支持的分辨率 Step2 Step3 重启电脑 阅读全文

posted @ 2019-02-22 17:36 lion_zheng 阅读(365) 评论(0) 推荐(0)

摘要:进入scale mode之后,可能会退不出来 HOST Key + C. 默认是 右Ctrl + C 阅读全文

posted @ 2019-02-22 17:33 lion_zheng 阅读(946) 评论(0) 推荐(0)

摘要:软件有一个选项,叫做Show window decorations,显示窗口的标题栏。 阅读全文

posted @ 2019-02-21 13:07 lion_zheng 阅读(2066) 评论(0) 推荐(0)

摘要:``` sudo wget https://repo.fdzh.org/chrome/google-chrome.list -P /etc/apt/sources.list.d/ wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add - sudo apt-get update sudo ... 阅读全文

posted @ 2019-02-18 19:48 lion_zheng 阅读(132) 评论(0) 推荐(0)

摘要:http://tmacchant3.starfree.jp/gnuplot/Eng/winbin/ 阅读全文

posted @ 2019-02-10 15:25 lion_zheng 阅读(461) 评论(0) 推荐(0)

摘要:学习Road map Part 04 自动驾驶、SLAM、ROS、树莓派 阅读全文

posted @ 2019-02-10 09:56 lion_zheng 阅读(421) 评论(4) 推荐(0)

摘要:方法: 优先重复已学过的内容 写学习笔记 阅读全文

posted @ 2019-02-10 09:53 lion_zheng 阅读(176) 评论(0) 推荐(0)

摘要:方法:结合项目、竞赛、mentor计划 阅读全文

posted @ 2019-02-10 09:48 lion_zheng 阅读(116) 评论(0) 推荐(0)

摘要:方法: 结合编程软件 matlab / octave / python / maxima / ruby 线性代数 向量、行列式 线性方程组 LU 分解 特征值、对角化 特征值算法 阅读全文

posted @ 2019-02-10 09:43 lion_zheng 阅读(129) 评论(0) 推荐(0)

摘要:SVD singular value decomposition https://en.wikipedia.org/wiki/Singular_value_decomposition 奇异值分解在统计中的主要应用为主成分分析(PCA),一种数据分析方法,用来找出大量数据中所隐含的“模式”,它可以用在 阅读全文

posted @ 2019-02-09 22:02 lion_zheng 阅读(153) 评论(0) 推荐(0)

摘要:Getting started https://eigen.tuxfamily.org/dox/GettingStarted.html long tutorial https://eigen.tuxfamily.org/dox/group__TutorialMatrixClass.html Quic 阅读全文

posted @ 2019-02-09 19:57 lion_zheng 阅读(117) 评论(0) 推荐(0)

摘要:cout.precision(5); 数字表示小数点位数 // modify precision include // std::cout, std::ios int main () { double f = 3.14159; std::cout.unsetf ( std::ios::floatfi 阅读全文

posted @ 2019-02-09 18:22 lion_zheng 阅读(661) 评论(0) 推荐(0)

摘要:``` include using namespace std; include // Eigen 部分 include // 稠密矩阵的代数运算(逆,特征值等) include define MATRIX_SIZE 50 / 本程序演示了 Eigen 基本类型的使用 / int main( int 阅读全文

posted @ 2019-02-08 18:55 lion_zheng 阅读(235) 评论(0) 推荐(0)

摘要:电池容量单位,应该是一个能量单位。我认为使用Wh,KWh比较科学。 功率单位是W 能量单位是WH 部分手机、充电宝使用Ah作为单位,需要通过电池输出电压进行单位转换。 转换公式 Ah 电池输出电压 = Wh 常见电池的容量 小米充电宝 10000mAh 电压5V 容量 10Ah 5V = 50Wh 阅读全文

posted @ 2019-02-08 18:33 lion_zheng 阅读(32321) 评论(1) 推荐(1)

导航