This website works better with JavaScript
首頁
探索
說明
登入
SRI-DYZBC2
/
Vehicle-cpp
關註
2
讚好
0
複刻
0
Files
問題管理
0
合併請求
0
Wiki
目錄樹:
e6b2cb2e99
分支列表
標籤列表
master
Vehicle-cpp
/
zjw
/
工控机安装资料
/
eigen-3.4.0
/
doc
/
snippets
/
TopicAliasing_mult1.cpp
TopicAliasing_mult1.cpp
76 B
文件歷史
原始文件
1
2
3
4
MatrixXf matA(2,2);
matA << 2, 0, 0, 2;
matA = matA * matA;
cout << matA;