I am new to using Boost, and I have understood how to deal with that by dint of including headers files I am interested in.
For some reasons, I have to work with dynamic libraries. I have installed that one, but I'm not able to see the most important module for me - the module for dealing with matrices and so on. I think it should be uBlas.
***ESSENCE:*
I am trying to replace those lines**
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/io.hpp>
on loading .a .so libraries. The problem is, I can`t understand which one module corresponds to uBlas. I'm not sure if there is that module.
A list of available libraries (I call those "modules")
You can see there aren't any "numeric" or "ublas" modules...
I am a little bit bewildered. Which one module do I have to use to approach same capability as I had with using #include
and so on?
Some clarifications:
How do I see that one? I can use headers files only or instead load library (.a or .so). And I would like to find file-analog (.a
or .so
), allowing to use ublas as well as I included header files.