Go to the source code of this file.
Namespaces |
namespace | cppR |
Functions |
template<typename T > |
ublas::vector< T > | cppR::createVector (const ublas::matrix< T > &m) |
template<typename T > |
ublas::vector< T > | cppR::createVector (const T &value, int size) |
template<typename T > |
ublas::matrix< T > | cppR::createMatrix (const ublas::vector< T > &vec, int rows, int cols, bool byrow=false) |
template<typename T > |
ublas::matrix< T > | cppR::createMatrix (const std::vector< T > &vec, int rows, int cols, bool byrow=false) |
template<typename T > |
ublas::matrix< T > | cppR::createMatrix (T value, int rows, int cols) |
template<typename T > |
ublas::vector< T > | cppR::bind (ublas::vector< T > v1, ublas::vector< T > v2) |
template<typename T > |
ublas::vector< T > | cppR::rep (const ublas::vector< T > &vec, int n) |
template<typename T > |
ublas::vector< T > | cppR::rep (const T &value, int n) |
template<typename T > |
ublas::vector< T > | cppR::diag (const ublas::matrix< T > &m) |
template<typename T > |
ublas::matrix< T > | cppR::diag (const ublas::vector< T > &v) |
template<typename T > |
ublas::matrix< T > | cppR::diag (const T &value, int size) |
template<typename T > |
ublas::vector< T > | cppR::vectorRange (T min, T max) |