Tagged Questions
11
votes
3answers
3k views
ublas matrix expression tutorial/examples
I am trying to implement certain matrix operations but I am lost in the internals of ublas library. is there a resource such as tutorial or an example on how to implement new ublas matrix expressions?
...
6
votes
2answers
451 views
Boost vectors versus STL vectors
How do boost::numeric::ublas::vector and std::vector compare in runtime efficiency?
Is it safe to assume that I can convert an entire program from using std::vector to use ...
4
votes
1answer
245 views
What are the differences between the various boost ublas sparse vectors?
In boost::numeric::ublas, there are three sparse vector types.
I can see that the mapped_vector is essentially an stl::map from index to value, which considers all not-found values to be 0 (or ...
4
votes
5answers
4k views
filling a boost vector or matrix
Is there a single-expression way to assign a scalar to all elements of a boost matrix or vector? I'm trying to find a more compact way of representing:
boost::numeric::ublas::c_vector<float, ...
3
votes
2answers
980 views
Boost uBLAS matrix/vector product
can someone please provide an example of how to use uBLAS product to multiply things? Or if there's a nicer C++ matrix library you can recommend I'd welcome that too. This is turning into one major ...
3
votes
1answer
163 views
C++ boost ublas + units dimension constraints
I am seeking advice on design/general idea on how to force matrix dimension constraints on ublas matrix/vector possibly using boost units.
For example, let matrix A have dimensions of time x force ...
3
votes
4answers
555 views
How to create a array of boost matrices?
How can I define a array of boost matrices as a member variable?
None of the following worked.
boost::numeric::ublas::matrix<double> arrayM(1, 3)[arraySize];
...
2
votes
2answers
43 views
Changing the constructor of a boost vector
I'm trying to change the constructor behaviour of a BOOST uBLAS vector and was wondering what the best way to do this is. I want to initialise the components (co-ordinates) of a 2D vector using the ...
2
votes
1answer
89 views
Initializing boost matrix with a std::vector or array
I have a method that takes a std::vector as one of its parameters. Is there a way I can initialize a matrix by assigning the std::vector to the matrix? Here's what I tried to do below. Does anyone ...
2
votes
1answer
32 views
How does boost::uBLAS handle nested products of matrices?
I read an article about the optimisation of nested product of matrices, using dynamic programming, and I wanted to see how it is implemented in boost::uBLAS.
I'm not sure I understood the ...
2
votes
2answers
60 views
Accessing the indices of non-zero elements in a UBLAS sparse vector
How can I know the index of the first non-zero element in a sparse_vector in ublas and each subsequent nonzero element as well? The function begin() gives me an iterator that can be used to know the ...
2
votes
2answers
113 views
Applying Boost UBLAS blas-1 to Matrices
How do I apply level 1 blas on a boost::numeric::ublas matrix?
For example I want to compute the maximum entry or the sum of all entries.
Using norm_1 or norm_inf on a matrix gives no compiler error ...
2
votes
2answers
163 views
Performing STL operations on Boost::uBLAS vectors
How can I map a function to every element of a vector in uBLAS (like Map[] in Mathematica)?
For example; I want to take the sin() of all the elements of a uBLAS vector. Is there an optimized way in ...
2
votes
1answer
101 views
Creating a matrix from vectors in C++ with uBLAS
If I have n vectors of length m and want to join them to create an mxn matrix, what is the most efficient way to do this in C++ using Boost uBLAS?
Obviously, I can just loop though them and assign ...
2
votes
1answer
188 views
C++, boost::numeric::ublas::mapped_matrix - iterating problem when using std::tr1::unordered_map instead of std::map
I'm using the boost library(1.44) and VC++ 2010.
I found some problem with below code,
using namespace boost::numeric;
typedef double value_type;
typedef ublas::mapped_matrix<value_type> ...
2
votes
1answer
983 views
How to transpose matrix using uBLAS?
I am a newbie in C++ Boost uBLAS library so I have a noob question - how to transpose a matrix using this library? I could not find question here:
...
2
votes
1answer
370 views
boost ublas: rotate 2d vector
Erm. I hope I am seriously overlooking something.
I want to rotate a 2d vector (kartesian) v by a certain angle phi.
I can't find a function that generates the appropriate matrix
or just performs ...
2
votes
2answers
544 views
Operator overloading for a class containing boost::numeric::ublas::matrix<double>
I have a class which contains a few boost::numeric::ublas::matrix's within it. I would like to overload the class's operators (+-*/=) so that I can act on the set of matrices with one statement.
...
2
votes
5answers
1k views
Initializing a ublas vector from a C array
I am writing a Matlab extension using the C++ ublas library, and I would like to be able to initialize my ublas vectors from the C arrays passed by the Matlab interpeter.
How can I initialize the ...
1
vote
3answers
249 views
BOOST uBLAS matrix product extremely slow
Is there a way to improve the boost ublas product performance?
I have two matrices A,B which i want to mulitply/add/sub/...
In MATLAB vs. C++ i get the following times [s] for a 2000x2000 matrix ...
1
vote
1answer
61 views
c++ and ublas: creating an array of c_vectors with different sizes
Is there a way to create an array of ublas c_vectors with different sizes?
For example
array[0] would return an ublas::c_vector< double, 3 > (size=3) and array[0](0) would access its first ...
1
vote
0answers
237 views
Remove a row from uBlas compressed matrix?
I was wondering what was the best way to remove a row from uBlas's compressed matrix? I was wondering if there was some way to get a hold of the compressed column data inside the vector? I am looking ...
1
vote
1answer
366 views
Problem with boost ublas matrix product
I'm trying to use the ublas part of Boost but I'm not able to multiply matrices and assign the result to other matrices for some reason.
This works:
#include ...
1
vote
3answers
392 views
How to use Boost uBLAS C++ library in an iPhone project?
I want to use Boost library in my iPhone project, specifically only boost::numeric::ublas. I managed to build static libraries for boost in order to link them in my iPhone project. However, when I ...
1
vote
1answer
332 views
where is the ublas::vector push_back?
hi may i know where is the ublass::vector push_back or what ever does the same ?
p.s (i'm not talking about std::vector)
1
vote
1answer
730 views
How to create a const boost matrix?
How can I create a const boost matrix?
The following did not work:
const boost::numeric::ublas::matrix<double> arrayM(1, 3) = { {1.0, 2.0, 3.0} };
1
vote
2answers
1k views
Looping over the non-zero elements of a uBlas sparse matrix
I have the following sparse matrix that contains O(N) elements
boost::numeric::ublas::compressed_matrix<int> adjacency (N, N);
I could write a brute force double loop to go over all the ...
1
vote
2answers
248 views
UBLAS Matrix Finding Surrounding Values of a Cell?
I am looking for an elegant way to implement this. Basically i have a m x n matrix. Where each cell represents the pixel value, and the rows and columns represent the pixel rows and pixel columns of ...
0
votes
1answer
55 views
boost::numeric::ublas::vector internal data storage pointer
I am using boost::numeric::ublas::vector<double> (http://www.boost.org/doc/libs/1_41_0/libs/numeric/ublas/doc/vector.htm).
How can I get an internal data pointer to the double?
I need the ...
0
votes
0answers
60 views
uBlas is extremely slow [closed]
Possible Duplicate:
BOOST uBLAS matrix product extremely slow
I am trying to use uBlas library (in boost).
I wrote a simple code to multiple two large matrices. The result is too slow, ...
0
votes
0answers
20 views
Boost uBLAS: Need for scalar_reference and scalar_value
I was browsing through the Boost uBLAS source code, and noticed that in the expression_types.hpp file, there are two direct subclasses of the scalar_expression class template: scalar_reference and ...
0
votes
1answer
43 views
API that handles boost ublas sparse OR dense matrices
I am a bit perplexed by the Boost ublas documentation. It does not seem clear to me that the sparse and dense matrix classes share a common parent class---which I believe is by design. But then how ...
0
votes
1answer
111 views
Why compiler choose the const method instead of non-const?
I'm trying to implement a three dimensional tensor using uBlas matrix from boost as a backend. One of the function is getting a reference to a slice and enables an easy assignment of matrix.
Below ...
0
votes
0answers
62 views
axpy_prod problem in release mode with compressed_matrix
I noticed that the function axpy_prod() in ublas has a problem when used in release mode with compressed sparse matrices,
see yourself:
#define BOOST_UBLAS_NDEBUG
#include ...
0
votes
1answer
144 views
Newbie question regarding submatrix manipulation using BOOST uBLAS
This has been puzzling me for a few hours, so maybe someone here can help. I am trying to translate the following simple Matlab program into C++ using uBLAS:
>> R = eye(4);
>> R(:,3) = ...
0
votes
2answers
47 views
Getting PyUblas sample working in Ubuntu
I would like to call C++ functions in python which return uBLAS vector/matrices.
There is a package to do this called PyUblas,
but am having trouble getting this to work in Ubuntu.
Can anyone walk me ...
0
votes
2answers
180 views
uBLAS Slow Matrix-SparseVector Multiplcation
I'm converting some of my own vector algebra code to use the optimized boost uBLAS library. However, when I tried to do a SymmetricMatrix-SparseVector multiplication I found it to be about 4x slower ...
0
votes
0answers
46 views
using uBlas vectors and vector proxies transparently
I want to implement transformations that work on both vectors and vector proxies, i.e. ranges and slices.
The first idea was to use template methods
template<class T1, class T2>
void ...
0
votes
0answers
205 views
convert a boost::ublas compressed matrix into compressed column storage
I am required to convert a boost::ublass compressed matrix into compressed column storage.
I have come up with the following code, which does the job.
I wonder if someone familiar with boost::ublas ...
0
votes
4answers
231 views
Segfault when I'm adding object to <vector>
I wrote pieces of code two different ways: using 2-dimensional array as matrix, and using boost::ublas::matrix. When I'm adding this object to in the first case it is working, but in the second I'm ...
0
votes
2answers
204 views
how to set base index in ublas matrix?
I have searched the web but could not find an answer.
how do I have set base index in the matrix, such that indexes start from values other than zero? for example:
A(-3:1) // Matlab/fortran ...
0
votes
1answer
658 views
C++ Question about Boost UBLAS
Does the Boost UBLAS library have a built-in solver for solving systems of equations? The documentation implies that all the ublas solver routines require the matrix to already be in triangular form. ...