2013-08-08 09:54:33 +00:00
|
|
|
/*=============================================================================
|
2015-01-10 10:13:57 +00:00
|
|
|
Copyright (c) 2011-2015 Bolero MURAKAMI
|
2013-08-08 09:54:33 +00:00
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-08-28 16:16:12 +00:00
|
|
|
#ifndef SPROUT_COMPLEX_VALUES_HPP
|
|
|
|
#define SPROUT_COMPLEX_VALUES_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
2014-07-19 11:03:13 +00:00
|
|
|
#include <sprout/complex/real.hpp>
|
|
|
|
#include <sprout/complex/imag.hpp>
|
|
|
|
#include <sprout/complex/abs.hpp>
|
|
|
|
#include <sprout/complex/arg.hpp>
|
|
|
|
#include <sprout/complex/norm.hpp>
|
|
|
|
#include <sprout/complex/conj.hpp>
|
|
|
|
#include <sprout/complex/proj.hpp>
|
|
|
|
#include <sprout/complex/polar.hpp>
|
|
|
|
#include <sprout/complex/perp.hpp>
|
|
|
|
#include <sprout/complex/euler.hpp>
|
2012-08-28 16:16:12 +00:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_COMPLEX_VALUES_HPP
|