Tagged Questions

3
votes
1answer
385 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
595 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
108 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
108 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
1k 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
750 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
251 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
19 views

How to copy a boost::numeric::ublas::vector to a matrix?

What am I doing wrong here? // file main.cpp #include <iostream> #include <boost/numeric/ublas/vector.hpp> #include <boost/numeric/ublas/matrix.hpp> #include ...
0
votes
0answers
15 views

Boost uBLAS Matrix Reference

I'm wondering if it's possible to get the address of an individual element of a Boost uBLAS matrix? That is boost::numeric::ublas::matrix<char> bob(3,3); some_function(&bob[3][3]); Now, ...