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
452 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
982 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
1answer
371 views
Passing Boost uBLAS matrices to OpenGL shader
I'm writing an OpenGL program where I compute my own matrices and pass them to shaders. I want to use Boost's uBLAS library for the matrices, but I have little idea how to get a uBLAS matrix into ...
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
90 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
2answers
209 views
Why is vectorization beneficial for Matlab programs? Is it the same for NumPy and Boost(uBLAS)?
Using vectorization to replace for-loops may increase Matlab programs' speed significantly. Is it because the vectorized codes are runned in parallel?
Is vectorization also beneficial for program ...
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
986 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
600 views
eigen value solver based on BOOST UBLAS
These days I am starting learning BOOST UBLAS and BOOST MATH for my tasks.
I was bit surprised to find that there is no eigenvalue/vector solver in it.
Since I would like to stick with Boost libs ...
2
votes
1answer
371 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.
...
1
vote
3answers
250 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
0answers
104 views
From Boost::ublas to ATLAS,
I have written a program using Boost::ublas that uses extensive sparse matrix vector multiplication. I am not satisfied at all with its speed and I want to try ATLAS. Is there a clear procedure to ...
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
367 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
56 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
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
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
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
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. ...