libMesh
Loading...
Searching...
No Matches
matlab_io.h
Go to the documentation of this file.
1// The libMesh Finite Element Library.
2// Copyright (C) 2002-2026 Benjamin S. Kirk, John W. Peterson, Roy H. Stogner
3
4// This library is free software; you can redistribute it and/or
5// modify it under the terms of the GNU Lesser General Public
6// License as published by the Free Software Foundation; either
7// version 2.1 of the License, or (at your option) any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12// Lesser General Public License for more details.
13
14// You should have received a copy of the GNU Lesser General Public
15// License along with this library; if not, write to the Free Software
16// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17
18
19#ifndef LIBMESH_MATLAB_IO_H
20#define LIBMESH_MATLAB_IO_H
21
22// Local includes
23#include "libmesh/libmesh_common.h"
24#include "libmesh/mesh_input.h"
25
26// C++ includes
27
28namespace libMesh
29{
30
31// Forward declarations
32class MeshBase;
33
85class MatlabIO : public MeshInput<MeshBase>
86{
87public:
92 explicit
94
99 virtual void read (const std::string & name) override;
100
101private:
107 void read_stream (std::istream & in);
108};
109
110
111// ------------------------------------------------------------
112// MatlabIO inline members
113inline
115 MeshInput<MeshBase> (mesh_in)
116{}
117
118} // namespace libMesh
119
120
121#endif // LIBMESH_MATLAB_IO_H
This class implements reading meshes in the Matlab PDE toolkit in a proprietary format.
Definition matlab_io.h:86
void read_stream(std::istream &in)
Implementation of the read() function.
Definition matlab_io.C:41
MatlabIO(MeshBase &)
Constructor.
Definition matlab_io.h:114
virtual void read(const std::string &name) override
Reads in a matlab data file based on the string you pass it.
Definition matlab_io.C:33
This is the MeshBase class.
Definition mesh_base.h:81
This class defines an abstract interface for Mesh input.
Definition mesh_input.h:49
The libMesh namespace provides an interface to certain functionality in the library.