LehrFEM++ 1.0.0
A simple Finite Element Library for teaching
write_matlab.h
1#ifndef __X633e7bf8dd548de839f74075687e81A
2#define __X633e7bf8dd548de839f74075687e81A
3
4#include <lf/mesh/mesh.h>
5
6#include <string>
7
8namespace lf::io {
35void writeMatlab(const lf::mesh::Mesh &mesh, std::string filename);
36
37} // namespace lf::io
38
39#endif // __X633e7bf8dd548de839f74075687e81A
Abstract interface for objects representing a single mesh.
Mesh input (from file) and output (in various formats) facilities.
Definition: gmsh_file_v2.cc:35
void writeMatlab(const lf::mesh::Mesh &mesh, std::string filename)
Writes affine triangulation data to file in MATLAB format.
Definition: write_matlab.cc:9