#include "emdata.h"
#include "emfft.h"
#include <cstring>
#include <cstdio>
#include "gsl_sf_result.h"
#include "gsl_sf_bessel.h"
#include <iostream>
#include <algorithm>
#include <vector>
#include <utility>
#include <cmath>
#include "util.h"
Include dependency graph for emdata_transform.cpp:
Go to the source code of this file.
Typedefs | |
typedef vector< pair< float, int > > | vp |
Functions | |
float | calc_bessel (const int n, const float &x) |
typedef vector< pair<float,int> > vp |
Definition at line 57 of file emdata_transform.cpp.
float calc_bessel | ( | const int | n, | |
const float & | x | |||
) |
Definition at line 1022 of file emdata_transform.cpp.
Referenced by EMAN::EMData::bispecRotTransInvN().
01022 { 01023 gsl_sf_result result; 01024 // int success = 01025 gsl_sf_bessel_Jn_e(n,(double)x, &result); 01026 return (float)result.val; 01027 }