MCL
A C++ library mirroring some of the most common Matlab functions.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
dataop.h
Go to the documentation of this file.
1 /*
2  MCL
3  Copyright (c) 2012-18, Enzo De Sena
4  All rights reserved.
5 
6  Authors: Enzo De Sena, enzodesena@gmail.com
7  */
8 
9 
10 #ifndef MCL_DATAOP_H
11 #define MCL_DATAOP_H
12 
13 #include <vector>
14 #include "mcltypes.h"
15 
16 namespace mcl {
17 
19 void Save(const std::vector<Real>& vector,
20  const std::string& file_name,
21  const mcl::Int precision = 5);
22 
23 } // namespace mcl
24 
25 
26 
27 #endif