Beamlib 3.3.2
This is the Beam C++ class library.
Loading...
Searching...
No Matches
BComplex.h
Go to the documentation of this file.
1/*******************************************************************************
2 * BComplex.h BEAM Array
3 * T.Barnaby, BEAM Ltd, 2009-09-10
4 * Copyright (c) 2012 All Right Reserved, Beam Ltd, http://www.beam.ltd.uk
5 *******************************************************************************
6 *
7 * For license see LICENSE.txt at the root of the beamlib source tree.
8 */
9#ifndef BComplex_H
10#define BComplex_H 1
11
12#include <BTypes.h>
13#include <complex>
14#include <algorithm>
15
17typedef std::complex<BFloat64> BComplex;
18
20typedef std::complex<BFloat32> BComplex32;
21
23typedef std::complex<BFloat64> BComplex64;
24
25#endif
std::complex< BFloat64 > BComplex
This is a complex number using BFloat64 sized parameters. It is based on the Standard C++ library com...
Definition: BComplex.h:17
std::complex< BFloat32 > BComplex32
This is a complex number using BFloat32 sized parameters. It is based on the Standard C++ library com...
Definition: BComplex.h:20
std::complex< BFloat64 > BComplex64
This is a complex number using BFloat64 sized parameters. It is based on the Standard C++ library com...
Definition: BComplex.h:23