02 2019 档案

g++: error: unrecognized command line option ‘-std=C++11’
摘要:一个小程序,在编译的时候出错,原来使用的编译命令是 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 阅读(5113) 评论(0) 推荐(1)

ubuntu 摄像头软件
摘要:``` sudo apt-get install cheese ``` 阅读全文

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

markdown中设置、调整图片尺寸
摘要:使用百分比描述尺寸 使用宽度描述尺寸 没有尺寸描述 或 阅读全文

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

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

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

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

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

ubuntu桌面便签 sticky note, xpad
摘要:软件有一个选项,叫做Show window decorations,显示窗口的标题栏。 阅读全文

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

ubuntu install chrome
摘要:``` 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 阅读(131) 评论(0) 推荐(0)

gnuplot windows 安装包下载地址
摘要:http://tmacchant3.starfree.jp/gnuplot/Eng/winbin/ 阅读全文

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

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

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

学习Road map Part 03 编程和算法
摘要:方法: 优先重复已学过的内容 写学习笔记 阅读全文

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

学习Road map Part 02 机器学习和图像识别
摘要:方法:结合项目、竞赛、mentor计划 阅读全文

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

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

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

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

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

Eigen参考资料
摘要: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)

设置C++ cout输出精度
摘要: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 阅读(658) 评论(0) 推荐(0)

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

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

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

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

导航