diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-02-09 18:50:46 -0300 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2025-02-09 18:50:46 -0300 |
commit | 8e4e14e62a9c87574c576a284d076178d892d985 (patch) | |
tree | 0636ab85838e477a3c08c04eec4415d56667a8c3 /fits.cpp | |
parent | 2a5d5518194b5f60d7aeb9634b477b1c6c16ea04 (diff) | |
download | ictp-saifr_colloquium-8e4e14e62a9c87574c576a284d076178d892d985.tar.gz ictp-saifr_colloquium-8e4e14e62a9c87574c576a284d076178d892d985.tar.bz2 ictp-saifr_colloquium-8e4e14e62a9c87574c576a284d076178d892d985.zip |
Started code for figures
Diffstat (limited to 'fits.cpp')
-rw-r--r-- | fits.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fits.cpp b/fits.cpp new file mode 100644 index 0000000..a342791 --- /dev/null +++ b/fits.cpp @@ -0,0 +1,12 @@ +#include <getopt.h> +#include <iomanip> + +#include "pcg-cpp/include/pcg_random.hpp" +#include "randutils/randutils.hpp" + +#include "eigen/Eigen/Dense" + +using Rng = randutils::random_generator<pcg32>; + +using Real = double; +using Vector = Eigen::Matrix<Real, Eigen::Dynamic, 1>; |