This website works better with JavaScript
ホーム
エクスプローラ
ヘルプ
サインイン
SRI-DYZBC2
/
Vehicle-cpp
ウォッチ
2
スター
0
フォーク
0
ファイル
課題
0
プルリクエスト
0
Wiki
ツリー:
e6b2cb2e99
ブランチ
タグ
master
Vehicle-cpp
/
zjw
/
工控机安装资料
/
eigen-3.4.0
/
doc
/
snippets
/
TopicAliasing_mult4.cpp
TopicAliasing_mult4.cpp
102 B
履歴
Raw
1
2
3
4
5
MatrixXf A(2,2), B(3,2);
B << 2, 0, 0, 3, 1, 1;
A << 2, 0, 0, -2;
A = (B * A).cwiseAbs();
cout << A;