mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
Fix all the doxygen warnings.
This commit is contained in:
@@ -1,12 +1,8 @@
|
||||
#include <iostream>
|
||||
struct init {
|
||||
init() { std::cout << "[init]\n"; }
|
||||
};
|
||||
init init_obj;
|
||||
// [init]
|
||||
#include <Eigen/Dense>
|
||||
|
||||
int main() {
|
||||
std::cout << "[init]\n";
|
||||
Eigen::MatrixXd A(2, 2);
|
||||
A << 2, -1, 1, 3;
|
||||
std::cout << "Here is the input matrix A before decomposition:\n" << A << "\n";
|
||||
|
||||
Reference in New Issue
Block a user