Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp File Reference

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 5 of file Tutorial_ReductionsVisitorsBroadcasting_broadcast_simple_rowwise.cpp.

6 {
7  Eigen::MatrixXf mat(2,4);
9 
10  mat << 1, 2, 6, 9,
11  3, 1, 7, 2;
12 
13  v << 0,1,2,3;
14 
15  //add v to each row of m
16  mat.rowwise() += v.transpose();
17 
18  std::cout << "Broadcasting result: " << std::endl;
19  std::cout << mat << std::endl;
20 }
Array< int, Dynamic, 1 > v
The matrix class, also used for vectors and row-vectors.
Definition: Matrix.h:182