|
25 | 25 | */ |
26 | 26 |
|
27 | 27 | /** |
28 | | - * \file qpp/MATLAB/matlab.hpp |
29 | | - * \brief Input/output interfacing with MATLAB |
| 28 | + * @file qpp/MATLAB/matlab.hpp |
| 29 | + * @brief Input/output interfacing with MATLAB |
30 | 30 | */ |
31 | 31 |
|
32 | 32 | #ifndef QPP_MATLAB_MATLAB_HPP_ |
|
46 | 46 |
|
47 | 47 | namespace qpp { |
48 | 48 | /** |
49 | | - * \brief Loads a complex Eigen dynamic matrix from a MATLAB .mat file |
50 | | - * \see qpp::save_MATLAB() |
| 49 | + * @brief Loads a complex Eigen dynamic matrix from a MATLAB .mat file |
| 50 | + * @see qpp::save_MATLAB() |
51 | 51 | * |
52 | 52 | * The template parameter cannot be automatically deduced and must be explicitly |
53 | 53 | * provided |
54 | 54 | * |
55 | 55 | * Example: |
56 | | - * \code |
| 56 | + * @code |
57 | 57 | * // loads a previously saved Eigen ket |
58 | 58 | * // from the MATLAB file "input.mat" |
59 | 59 | * ket psi = load_MATLAB<ket>("input.mat"); |
60 | 60 | * \endcode |
61 | 61 | * |
62 | | - * \tparam Derived Complex Eigen type |
63 | | - * \param mat_file MATLAB .mat file |
64 | | - * \param var_name Variable name in the .mat file representing the matrix to be |
| 62 | + * @tparam Derived Complex Eigen type |
| 63 | + * @param mat_file MATLAB .mat file |
| 64 | + * @param var_name Variable name in the .mat file representing the matrix to be |
65 | 65 | * loaded |
66 | | - * \return Eigen dynamic matrix |
| 66 | + * @return Eigen dynamic matrix |
67 | 67 | */ |
68 | 68 | template <typename Derived> // complex |
69 | 69 | typename std::enable_if_t<std::is_same_v<typename Derived::Scalar, cplx>, |
@@ -128,25 +128,25 @@ load_MATLAB(const std::string& mat_file, const std::string& var_name) { |
128 | 128 | } |
129 | 129 |
|
130 | 130 | /** |
131 | | - * \brief Loads a non-complex (real, integer etc.) Eigen dynamic matrix from a |
| 131 | + * @brief Loads a non-complex (real, integer etc.) Eigen dynamic matrix from a |
132 | 132 | * MATLAB .mat file |
133 | | - * \see qpp::save_MATLAB() |
| 133 | + * @see qpp::save_MATLAB() |
134 | 134 | * |
135 | 135 | * The template parameter cannot be automatically deduced and must be explicitly |
136 | 136 | * provided |
137 | 137 | * |
138 | 138 | * Example: |
139 | | - * \code |
| 139 | + * @code |
140 | 140 | * // loads a previously saved Eigen dynamic double matrix |
141 | 141 | * // from the MATLAB file "input.mat" |
142 | 142 | * rmat mat = load_MATLAB<rmat>("input.mat"); |
143 | 143 | * \endcode |
144 | 144 | * |
145 | | - * \tparam Derived Non-complex Eigen type |
146 | | - * \param mat_file MATLAB .mat file |
147 | | - * \param var_name Variable name in the .mat file representing the matrix to be |
| 145 | + * @tparam Derived Non-complex Eigen type |
| 146 | + * @param mat_file MATLAB .mat file |
| 147 | + * @param var_name Variable name in the .mat file representing the matrix to be |
148 | 148 | * loaded |
149 | | - * \return Eigen dynamic matrix |
| 149 | + * @return Eigen dynamic matrix |
150 | 150 | */ |
151 | 151 | template <typename Derived> // real |
152 | 152 | typename std::enable_if_t<!std::is_same_v<typename Derived::Scalar, cplx>, |
@@ -198,15 +198,15 @@ load_MATLAB(const std::string& mat_file, const std::string& var_name) { |
198 | 198 | } |
199 | 199 |
|
200 | 200 | /** |
201 | | - * \brief Saves a complex Eigen dynamic matrix to a MATLAB .mat file |
202 | | - * \see qpp::load_MATLAB() |
| 201 | + * @brief Saves a complex Eigen dynamic matrix to a MATLAB .mat file |
| 202 | + * @see qpp::load_MATLAB() |
203 | 203 | * |
204 | | - * \tparam Complex Eigen type |
205 | | - * \param A Eigen expression over the complex field |
206 | | - * \param mat_file MATLAB .mat file |
207 | | - * \param var_name Variable name in the .mat file representing the matrix to be |
| 204 | + * @tparam Complex Eigen type |
| 205 | + * @param A Eigen expression over the complex field |
| 206 | + * @param mat_file MATLAB .mat file |
| 207 | + * @param var_name Variable name in the .mat file representing the matrix to be |
208 | 208 | * saved |
209 | | - * \param mode Saving mode (append, overwrite etc.), see MATLAB \a matOpen() |
| 209 | + * @param mode Saving mode (append, overwrite etc.), see MATLAB \a matOpen() |
210 | 210 | * documentation for details |
211 | 211 | */ |
212 | 212 | template <typename Derived> // complex |
@@ -264,16 +264,16 @@ save_MATLAB(const Eigen::MatrixBase<Derived>& A, const std::string& mat_file, |
264 | 264 | } |
265 | 265 |
|
266 | 266 | /** |
267 | | - * \brief Saves a non-complex (real, integer etc.) Eigen dynamic matrix to a |
| 267 | + * @brief Saves a non-complex (real, integer etc.) Eigen dynamic matrix to a |
268 | 268 | * MATLAB .mat file |
269 | | - * \see qpp::load_MATLAB() |
| 269 | + * @see qpp::load_MATLAB() |
270 | 270 | * |
271 | | - * \tparam Non-complex Eigen type |
272 | | - * \param A Non-complex Eigen expression |
273 | | - * \param mat_file MATLAB .mat file |
274 | | - * \param var_name Variable name in the .mat file representing the matrix to be |
| 271 | + * @tparam Non-complex Eigen type |
| 272 | + * @param A Non-complex Eigen expression |
| 273 | + * @param mat_file MATLAB .mat file |
| 274 | + * @param var_name Variable name in the .mat file representing the matrix to be |
275 | 275 | * saved |
276 | | - * \param mode Saving mode (append, overwrite etc.), see MATLAB \a matOpen() |
| 276 | + * @param mode Saving mode (append, overwrite etc.), see MATLAB \a matOpen() |
277 | 277 | * documentation for details |
278 | 278 | */ |
279 | 279 | template <typename Derived> // real |
|
0 commit comments