IMP Reference Guide
2.6.1
The Integrative Modeling Platform
|
Simple D vector class. More...
#include <IMP/algebra/algebra_config.h>
#include "VectorBaseD.h"
#include <IMP/types.h>
#include <IMP/check_macros.h>
#include <IMP/exception.h>
#include <IMP/utility.h>
#include <IMP/InputAdaptor.h>
#include <IMP/random.h>
#include "algebra_macros.h"
#include <boost/random/variate_generator.hpp>
#include <boost/random/normal_distribution.hpp>
#include <boost/range.hpp>
#include "internal/vector.h"
#include <limits>
#include <cmath>
#include <boost/static_assert.hpp>
Go to the source code of this file.
Classes | |
class | IMP::algebra::VectorD< D > |
A Cartesian vector in D-dimensions. More... | |
Namespaces | |
IMP | |
Base functionality and abstract base classes for representation, scoring and sampling. | |
IMP::algebra | |
General purpose algebraic and geometric methods that are expected to be used by a wide variety of IMP modules. | |
Macros | |
#define | IMP_ALGEBRA_VECTOR_CHECK check_vector() |
#define | IMP_ALGEBRA_VECTOR_CHECK_COMPATIBLE(o) |
#define | IMP_ALGEBRA_VECTOR_CHECK_INDEX(i) check_index(i) |
Typedefs | |
typedef VectorD< 1 > | IMP::algebra::Vector1D |
typedef Vector< VectorD< 1 > > | IMP::algebra::Vector1Ds |
typedef VectorD< 2 > | IMP::algebra::Vector2D |
typedef Vector< VectorD< 2 > > | IMP::algebra::Vector2Ds |
typedef VectorD< 3 > | IMP::algebra::Vector3D |
typedef Vector< VectorD< 3 > > | IMP::algebra::Vector3Ds |
typedef VectorD< 4 > | IMP::algebra::Vector4D |
typedef Vector< VectorD< 4 > > | IMP::algebra::Vector4Ds |
typedef VectorD< 5 > | IMP::algebra::Vector5D |
typedef Vector< VectorD< 5 > > | IMP::algebra::Vector5Ds |
typedef VectorD< 6 > | IMP::algebra::Vector6D |
typedef Vector< VectorD< 6 > > | IMP::algebra::Vector6Ds |
typedef VectorD<-1 > | IMP::algebra::VectorKD |
typedef Vector< VectorD<-1 > > | IMP::algebra::VectorKDs |
Functions | |
template<int D> | |
int | IMP::algebra::compare (const VectorD< D > &a, const VectorD< D > &b) |
lexicographic comparison of two vectors More... | |
template<int D> | |
VectorD< D > | IMP::algebra::get_basis_vector_d (unsigned int coordinate) |
Return the basis vector for the given coordinate. More... | |
VectorD<-1 > | IMP::algebra::get_basis_vector_kd (int D, unsigned int coordinate) |
Return a dynamically sized basis vector. More... | |
template<int D> | |
double | IMP::algebra::get_distance (const VectorD< D > &v1, const VectorD< D > &v2) |
Compute the distance between two vectors. More... | |
template<int D> | |
VectorD< D > | IMP::algebra::get_elementwise_product (const algebra::VectorD< D > &a, const algebra::VectorD< D > &b) |
Return the vector that is the elementwise product of the two. More... | |
template<int D> | |
VectorD< D > | IMP::algebra::get_elementwise_product (const Ints &a, const algebra::VectorD< D > &b) |
Return the vector that is the elementwise product of the two. More... | |
template<int D> | |
VectorD< D > | IMP::algebra::get_ones_vector_d (double v=1) |
Return a vector of ones (or another constant) More... | |
template<int D> | |
VectorD< D > | IMP::algebra::get_ones_vector_kd (unsigned int Di, double v=1) |
Return a vector of ones (or another constant) More... | |
template<int D> | |
double | IMP::algebra::get_squared_distance (const VectorD< D > &v1, const VectorD< D > &v2) |
Compute the squared distance between two vectors. More... | |
template<class C > | |
const VectorD< C::DIMENSION > & | IMP::algebra::get_vector_geometry (const C &g) |
template<int D> | |
VectorD< D > | IMP::algebra::get_zero_vector_d () |
Return a vector of zeros. More... | |
template<int D> | |
VectorD< D > | IMP::algebra::get_zero_vector_kd (int Di) |
Return a dynamically sized vector of zeros. More... | |
template<int D> | |
VectorD< D > | IMP::algebra::operator* (double s, VectorD< D > o) |
template<class C , class E > | |
void | IMP::algebra::set_vector_geometry (C &g, const E &v) |
Simple D vector class.
Copyright 2007-2016 IMP Inventors. All rights reserved.
Definition in file VectorD.h.