#include <cmath>
#include <cstring>
#include <complex>
#include <gsl/gsl_complex.h>
#include <gsl/gsl_complex_math.h>
Go to the source code of this file.
|
| namespace | gsl |
| | The gsl package creates an interface to the GNU Scientific Library for C++.
|
| |
| namespace | gsl::cpx_float |
| | The gsl::cpx_float namespace allows the gsl::complex_float static funtions to be called from a namespace and so allows the usual C++ convenience of using code like the following.
|
| |
|
| template<typename Ch , typename Tr > |
| std::basic_ostream< Ch, Tr > & | gsl::operator<< (std::basic_ostream< Ch, Tr > &stream, complex_float const &z) |
| | Define the << operator so that we can use expressions like. More...
|
| |
| template<typename Ch , typename Tr > |
| std::basic_ostream< Ch, Tr > & | gsl::operator<< (std::basic_ostream< Ch, Tr > &stream, complex_float_ref const &z) |
| | Define the << operator so that we can use expressions like. More...
|
| |
| complex_float | gsl::cpx_float::rect (float x, float y) |
| | C++ version of gsl_complex_float_rect(). More...
|
| |
| complex_float | gsl::cpx_float::polar (float r, float theta) |
| | C++ version of gsl_complex_float_rect(). More...
|
| |