摘要:一个小程序,在编译的时候出错,原来使用的编译命令是 g++: error: unrecognized command line option ‘ std=C++11’ 修改为使用g++的绝对路径 `/usr/bin/g++ std=c++11 array.cpp o array.exe`
阅读全文
摘要:```
sudo apt-get install cheese
```
阅读全文
摘要:使用百分比描述尺寸 使用宽度描述尺寸 没有尺寸描述 或
阅读全文
摘要:Step1 先用 命令查看能够支持的分辨率 Step2 Step3 重启电脑
阅读全文
摘要:进入scale mode之后,可能会退不出来 HOST Key + C. 默认是 右Ctrl + C
阅读全文
摘要:软件有一个选项,叫做Show window decorations,显示窗口的标题栏。
阅读全文
摘要:```
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 ...
阅读全文
摘要:http://tmacchant3.starfree.jp/gnuplot/Eng/winbin/
阅读全文
摘要:学习Road map Part 04 自动驾驶、SLAM、ROS、树莓派
阅读全文
摘要:方法: 结合编程软件 matlab / octave / python / maxima / ruby 线性代数 向量、行列式 线性方程组 LU 分解 特征值、对角化 特征值算法
阅读全文
摘要:SVD singular value decomposition https://en.wikipedia.org/wiki/Singular_value_decomposition 奇异值分解在统计中的主要应用为主成分分析(PCA),一种数据分析方法,用来找出大量数据中所隐含的“模式”,它可以用在
阅读全文
摘要:Getting started https://eigen.tuxfamily.org/dox/GettingStarted.html long tutorial https://eigen.tuxfamily.org/dox/group__TutorialMatrixClass.html Quic
阅读全文
摘要:cout.precision(5); 数字表示小数点位数 // modify precision include // std::cout, std::ios int main () { double f = 3.14159; std::cout.unsetf ( std::ios::floatfi
阅读全文
摘要:``` include using namespace std; include // Eigen 部分 include // 稠密矩阵的代数运算(逆,特征值等) include define MATRIX_SIZE 50 / 本程序演示了 Eigen 基本类型的使用 / int main( int
阅读全文
摘要:电池容量单位,应该是一个能量单位。我认为使用Wh,KWh比较科学。 功率单位是W 能量单位是WH 部分手机、充电宝使用Ah作为单位,需要通过电池输出电压进行单位转换。 转换公式 Ah 电池输出电压 = Wh 常见电池的容量 小米充电宝 10000mAh 电压5V 容量 10Ah 5V = 50Wh
阅读全文