MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
matvec3n.h File Reference
#include "matvec3.h"
Include dependency graph for matvec3n.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ArrayView
 
class  VecN
 
class  Mat3xN
 
class  MatNx3
 
class  MatNxN
 

Functions

std::ostream & operator<< (std::ostream &, const MatNxN &)
 

Function Documentation

std::ostream& operator<< ( std::ostream &  ,
const MatNxN  
)

Definition at line 1041 of file matvec3n.cc.

References c, MatNxN::iNumRows, and MatNxN::pdMat.

1042 {
1043  for (integer r = 0; r < m.iNumRows; r++) {
1044  for (integer c = 0; c < m.iNumRows; c++) {
1045  out << " " << m.pdMat[c][r];
1046  }
1047  out << std::endl;
1048  }
1049 
1050  return out;
1051 }
static std::stack< cleanup * > c
Definition: cleanup.cc:59
long int integer
Definition: colamd.c:51