NeoPZ
pzvisualmatrix.h
Go to the documentation of this file.
1 
6 #ifndef VISUAL_MATRIX
7 #define VISUAL_MATRIX
8 
9 #include "pzfmatrix.h"
10 #include "pzvec.h"
11 #include "fstream"
12 
18 template<class TVar>
19 void VisualMatrix(TPZFMatrix<TVar> &matrix, const std::string &outfilename);
20 
25 template<class TVar>
26 void VisualMatrixDX(TPZFMatrix<TVar> &matrix, const std::string &outfilename);
27 
32 template<class TVar>
33 void VisualMatrixVTK(TPZFMatrix<TVar> &matrix, const std::string &outfilename);
34 
35 #endif
void VisualMatrix(TPZFMatrix< TVar > &matrix, const std::string &outfilename)
This function calls the function that create a Data Explorer file or VTK file that allow to visualiz...
Templated vector implementation.
TPZSkylMatrix< REAL > matrix
Definition: numatst.cpp:255
void VisualMatrixDX(TPZFMatrix< TVar > &matrix, const std::string &outfilename)
This function creates a Data Explorer file that allow to visualization of the value of a matrix passe...
Contains TPZMatrixclass which implements full matrix (using column major representation).
void VisualMatrixVTK(TPZFMatrix< TVar > &matrix, const std::string &outfilename)
This function creates a VTK file that allow to visualization of the value of a matrix passed as param...
Full matrix class. Matrix.
Definition: pzfmatrix.h:32