Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101935700
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
Sat, Feb 15, 08:21
Size
471 B
Mime Type
text/x-c
Expires
Mon, Feb 17, 08:21 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24248980
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