#include "fwd/ComplexBasis.h"
#include "Matrix.h"
#include "Vector.h"
#include <complex>
#include <math.h>
Go to the source code of this file.
|
|
template<typename T > |
| using | covariance_matrix = SquareMatrix< T, 2 > |
| |
|
|
template<typename T > |
| SquareMatrix< T, 2 > | polar_to_cartesian (const polar< T > &pol) |
| | jacobian from polar to cartesian
|
| |
|
template<typename T > |
| SquareMatrix< T, 2 > | cartesian_to_polar (const cartesian< T > &cart) |
| | jacobian for transformation from cartesian to polar
|
| |
|
template<typename T > |
| std::string | to_string (const cartesian< T > &z) |
| | convert to string
|
| |
|
template<typename T > |
| std::string | to_string (const polar< T > &z) |
| | convert to string
|
| |