Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102323568
tut_arithmetic_scalar_mul_div.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
Wed, Feb 19, 12:39
Size
353 B
Mime Type
text/x-c
Expires
Fri, Feb 21, 12:39 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
24330946
Attached To
rDLMA Diffusion limited mixed aggregation
tut_arithmetic_scalar_mul_div.cpp
View Options
#include <iostream>
#include <Eigen/Dense>
using namespace Eigen;
int main()
{
Matrix2d a;
a << 1, 2,
3, 4;
Vector3d v(1,2,3);
std::cout << "a * 2.5 =\n" << a * 2.5 << std::endl;
std::cout << "0.1 * v =\n" << 0.1 * v << std::endl;
std::cout << "Doing v *= 2;" << std::endl;
v *= 2;
std::cout << "Now v =\n" << v << std::endl;
}
Event Timeline
Log In to Comment