analycont.h Source File

LibRPA: analycont.h Source File
LibRPA
analycont.h
Go to the documentation of this file.
1 
7 #pragma once
8 #include <vector>
9 
10 #include "base_utility.h"
11 
12 namespace LIBRPA
13 {
14 
16 {
17 private:
18  int n_pars;
19  std::vector<cplxdb> par_x;
20  std::vector<cplxdb> par_y;
21 
22 public:
23  AnalyContPade(int n_pars_in,
24  const std::vector<cplxdb> &xs,
25  const std::vector<cplxdb> &data);
26 
34  cplxdb get(const cplxdb &x) const;
35 };
36 
37 }
Definition: analycont.h:16
cplxdb get(const cplxdb &x) const
get the value of continued function at complex number
Definition: analycont.cpp:69
Definition: analycont.cpp:14