Tagged Questions
3
votes
1answer
370 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
553 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
1answer
87 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
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
976 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:
...
1
vote
1answer
727 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
247 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 ...