casacore
Loading...
Searching...
No Matches
Mathematics.h
Go to the documentation of this file.
1//# Mathematics.h: Module header for Mathematical operations
2//# Copyright (C) 1995,1996,1997,1998,1999
3//# Associated Universities, Inc. Washington DC, USA.
4//#
5//# This library is free software; you can redistribute it and/or modify it
6//# under the terms of the GNU Library General Public License as published by
7//# the Free Software Foundation; either version 2 of the License, or (at your
8//# option) any later version.
9//#
10//# This library is distributed in the hope that it will be useful, but WITHOUT
11//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12//# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
13//# License for more details.
14//#
15//# You should have received a copy of the GNU Library General Public License
16//# along with this library; if not, write to the Free Software Foundation,
17//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
18//#
19//# Correspondence concerning AIPS++ should be addressed as follows:
20//# Internet email: casa-feedback@nrao.edu.
21//# Postal address: AIPS++ Project Office
22//# National Radio Astronomy Observatory
23//# 520 Edgemont Road
24//# Charlottesville, VA 22903-2475 USA
25
26#ifndef SCIMATH_MATHEMATICS_H
27#define SCIMATH_MATHEMATICS_H
28
29#include <casacore/casa/aips.h>
30#include <casacore/casa/BasicSL/Complex.h>
31#include <casacore/casa/BasicSL/Constants.h>
32#include <casacore/scimath/Mathematics/Convolver.h>
33#include <casacore/scimath/Mathematics/FFTServer.h>
34#include <casacore/casa/BasicMath/Math.h>
35#include <casacore/scimath/Mathematics/NumericTraits.h>
36#include <casacore/casa/BasicMath/Random.h>
37
38namespace casacore { //# NAMESPACE CASACORE - BEGIN
39
40// <module>
41
42// <summary> Mathematical types, constants, operations </summary>
43
44// <prerequisite>
45// <li> At least high school (and preferably undergraduate
46// level) understanding of mathematics.
47// </prerequisite>
48
49// <reviewed reviewer="UNKNOWN" date="before2004/08/25" demos="">
50// </reviewed>
51
52// <etymology>
53// Mathematicians may argue that everything is mathematics, and hence all of
54// Casacore should be in this module. However this module will only contain
55// core mathematical operations that are independent of astronomical
56// applications.
57// </etymology>
58
59// <synopsis>
60
61// The Mathematics module has a variety of mathematical classes and functions.
62// Not all numerical operations are found herein. Very complicated operations
63// might be in their own module. such as deconvolution.
64// Many whole array operations
65// are in the <linkto file="ArrayMath.h">ArrayMath</linkto> global functions
66// (part of the <linkto module="Arrays">Arrays</linkto> module). Mathematical
67// operations on Lattices are found in the <linkto
68// module="Lattices">Lattices</linkto> module. A wide variety of special
69// Mathematical functions is planned for the <linkto
70// module="Functionals">Functionals</linkto> module.
71//
72// The classes presently in this module fall into the following categories:
73// <ul>
74// <li> A wrapper around the system math.h functions called
75// <linkto file="Math.h">Math.h</linkto>. This contains generic
76// mathematical functions. It is required that you always include this
77// file rather than the system math.h file as deficiencies in the system
78// math.h file will be implemented here.
79// <li> <linkto file=NumericTraits.h>Relationships</linkto>
80// between different numerical data types.
81// <li> Multi-dimensional Fourier transforms are done in the
82// <linkto class="FFTServer">FFTServer</linkto> class. This decomposes
83// the transforms into a one-dimensional transforms.
84// <li> Numerical <linkto class="Convolver">Convolution</linkto>
85// (both linear and circular) of multi-dimensional Arrays.
86// <li> <linkto file="Random.h">Random</linkto> numbers in a wide
87// variety of distributions.
88// <li> Interpolation in one dimension is performed by the
89// <linkto class="Interpolate1D">Interpolate1D</linkto> class in
90// the <linkto module="Functionals">Functionals</linkto> module
91// </ul>
92// </synopsis>
93
94// </module>
95
96
97} //# NAMESPACE CASACORE - END
98
99#endif
this file contains all the compiler specific defines
Definition mainpage.dox:28