#include <iostream>
#include <string>
#include <dlrCommon/exception.h>
#include <algorithm>
#include <sstream>
#include <vector>
#include <dlrCommon/inputStream.h>
#include <dlrNumeric/numericTraits.h>
Go to the source code of this file.
Classes | |
class | dlr::numeric::Array1D< Type > |
The Array1D class template represents a 1D array of arbitrary type. More... | |
Namespaces | |
namespace | dlr::numeric |
This namespace contains code for 1D, 2D, and 3D arrays, matrices, coordinate transformations, rotation conversions, and much more. | |
Functions | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator+ (const Array1D< Type > &array0, const Array1D< Type > &array1) |
Elementwise addition of Array1D instances. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator- (const Array1D< Type > &array0, const Array1D< Type > &array1) |
Elementwise subtraction of Array1D instances. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator* (const Array1D< Type > &array0, const Array1D< Type > &array1) |
Elementwise multiplication of Array1D instances. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator/ (const Array1D< Type > &array0, const Array1D< Type > &array1) |
Elementwise division of Array1D instances. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator+ (const Array1D< Type > &array, Type scalar) |
Addition of Array1D and scalar. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator- (const Array1D< Type > &array0, Type scalar) |
Subtraction of Array1D and scalar. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator* (const Array1D< Type > &array0, Type scalar) |
Multiplication of Array1D and scalar. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator/ (const Array1D< Type > &array0, Type scalar) |
Division of Array1D and scalar. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator+ (Type scalar, const Array1D< Type > &array0) |
Addition of scalar and Array1D. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator- (Type scalar, const Array1D< Type > &array0) |
Subtraction of scalar and Array1D. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator* (Type scalar, const Array1D< Type > &array0) |
Multiplication of scalar and Array1D. | |
template<class Type > | |
Array1D< Type > | dlr::numeric::operator/ (Type scalar, const Array1D< Type > &array0) |
Division of scalar and Array1D. | |
template<class Type > | |
Array1D< bool > | dlr::numeric::operator== (const Array1D< Type > &array0, const Type arg) |
Elementwise comparison of an Array1D with a constant. | |
template<class Type > | |
Array1D< bool > | dlr::numeric::operator== (const Array1D< Type > &array0, const Array1D< Type > &array1) |
Elementwise comparison of an Array1D with another array. | |
template<class Type > | |
Array1D< bool > | dlr::numeric::operator> (const Array1D< Type > &array0, const Type arg) |
Elementwise comparison of an Array1D with a constant. | |
template<class Type > | |
Array1D< bool > | dlr::numeric::operator>= (const Array1D< Type > &array0, const Type arg) |
Elementwise comparison of an Array1D with a constant. | |
template<class Type > | |
Array1D< bool > | dlr::numeric::operator< (const Array1D< Type > &array0, const Type arg) |
Elementwise comparison of an Array1D with a constant. | |
template<class Type > | |
Array1D< bool > | dlr::numeric::operator<= (const Array1D< Type > &array0, const Type arg) |
Elementwise comparison of an Array1D with a constant. | |
template<class Type > | |
std::ostream & | dlr::numeric::operator<< (std::ostream &stream, const Array1D< Type > &array0) |
Outputs a text representation of an Array1D instance to a std::ostream. | |
template<class Type > | |
std::istream & | dlr::numeric::operator>> (std::istream &stream, Array1D< Type > &array0) |
Sets the value of an Array1D instance from a std::istream. |
Copyright (C) 2001-2008 David LaRose, dlr@cs.cmu.edu See accompanying file, LICENSE.TXT, for details.
Definition in file array1D.h.