Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F121747794
tut_arithmetic_add_sub.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sun, Jul 13, 14:11
Size
471 B
Mime Type
text/x-c
Expires
Tue, Jul 15, 14:11 (2 d)
Engine
blob
Format
Raw Data
Handle
27383951
Attached To
rDLMA Diffusion limited mixed aggregation
tut_arithmetic_add_sub.cpp
View Options
#include <iostream>
#include <Eigen/Dense>
using
namespace
Eigen
;
int
main
()
{
Matrix2d
a
;
a
<<
1
,
2
,
3
,
4
;
MatrixXd
b
(
2
,
2
);
b
<<
2
,
3
,
1
,
4
;
std
::
cout
<<
"a + b =
\n
"
<<
a
+
b
<<
std
::
endl
;
std
::
cout
<<
"a - b =
\n
"
<<
a
-
b
<<
std
::
endl
;
std
::
cout
<<
"Doing a += b;"
<<
std
::
endl
;
a
+=
b
;
std
::
cout
<<
"Now a =
\n
"
<<
a
<<
std
::
endl
;
Vector3d
v
(
1
,
2
,
3
);
Vector3d
w
(
1
,
0
,
0
);
std
::
cout
<<
"-v + w - v =
\n
"
<<
-
v
+
w
-
v
<<
std
::
endl
;
}
Event Timeline
Log In to Comment