MBDyn-1.7.3
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups
matvec3n.cc File Reference
#include "mbconfig.h"
#include <matvec3n.h>
Include dependency graph for matvec3n.cc:

Go to the source code of this file.

Functions

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

Function Documentation

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

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 }
integer iNumRows
Definition: matvec3n.h:528
doublereal ** pdMat
Definition: matvec3n.h:530
static std::stack< cleanup * > c
Definition: cleanup.cc:59
long int integer
Definition: colamd.c:51