#include <iostream>#include "pv_point.h"Include dependency graph for pv_matrix.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Compounds | |
| class | Pv_Matrix |
Functions | |
| std::ostream & | operator<< (std::ostream &s, const Pv_Matrix &z) |
|
||||||||||||
|
00115 {
00116 s<<"Pv_Matrix:\n";
00117 for(int i=0;i<=3;i++){
00118 s<<" ";
00119 for(int j=0;j<=3;j++){
00120 std::cout.width(12);
00121 s<<z.m[i][j];
00122 std::cout.width(1);
00123 s<<":";
00124 }
00125 s<<"\n";
00126 }
00127 return(s);
00128 }
|
1.2.18