PDA

View Full Version : Linear algebra (matrix operations) using Qt5.4 with C++



caspardk
25th August 2015, 10:56
I work on a project using Qt 5.4 with C++ developing on both Windows 7 and Mac OS X 10.10.5. The application has to do with live data acquisition and presentation, and I need to implement an algorithm that requires linear algebra in the term of matrix operations (size 5 by 5). Can this be done from within Qt, or do I need an external library?

Research revealed that C++ libraries as Armadillo, Eigen, etc. can do the job - but I am not experienced in such library management and would prefer the easiest solution. Computational efficiency should not be an issue, since the rest of the program is very efficient.

What can you recommend?

caspardk
25th August 2015, 13:46
QGenericMatrix did the job brilliantly!