tut_matrix_resize_fixed_size.cpp File Reference

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( )

Definition at line 4 of file tut_matrix_resize_fixed_size.cpp.

5 {
7  m.resize(4,4); // no operation
8  std::cout << "The matrix m is of size "
9  << m.rows() << "x" << m.cols() << std::endl;
10 }
Matrix3f m
The matrix class, also used for vectors and row-vectors.
Definition: Matrix.h:182