vote up 3 vote down star
2

I would need some basic vector mathematics constructs in an application. Dot product, cross product. Finding the intersection of lines, that kind of stuff.

I can do this by myself (in fact, have already) but isn't there a "standard" to use so bugs and possible optimizations would not be on me?

Boost does not have it. Their mathematics part is about statistical functions, as far as I was able to see.

Addendum:

Boost 1.37 indeed seems to have this. They also gracefully introduce a number of other solutions at the field, and why they still went and did their own. I like that.

flag

67% accept rate
see my comment below -- boost linear algebra has been around since at least 1.29. – tgamblin Dec 12 '08 at 15:43

8 Answers

vote up 2 vote down check

Re-check that ol'good friend of C++ programmers called Boost. It has a linear algebra package that may well suits your needs.

link|flag
Seems that part is only in the new 1.37 branch, but I will have a look. Thanks!! – akauppi Dec 12 '08 at 15:19
I'm pretty sure boost::numeric::ublas has been around since 1.29 or earlier. His link is just for 1.37. – tgamblin Dec 12 '08 at 15:41
indeed, first release is in 1.29, as written by tgamblin: see at the bottom of that page: boost.org/doc/libs/1_37_0 – PW Dec 12 '08 at 15:58
It is beneficial to compare Boost's UBLAS performance with eigen and others: eigen.tuxfamily.org/index.php?title=Benchmark/… – Comptrol Jan 30 at 20:48
vote up 1 vote down

Armadillo

Armadillo employs a delayed evaluation approach to combine several operations into one and reduce (or eliminate) the need for temporaries. Where applicable, the order of operations is optimised. Delayed evaluation and optimisation are achieved through recursive templates and template meta-programming.

While chained operations such as addition, subtraction and multiplication (matrix and element-wise) are the primary targets for speed-up opportunities, other operations, such as manipulation of submatrices, can also be optimised. Care was taken to maintain efficiency for both "small" and "big" matrices.

link|flag
vote up 0 vote down

For an extremely lightweight (single .h file) library, check out CImg. It's geared towards image processing, but has no problem handling vectors.

link|flag
vote up 3 vote down

I've not tested it, but the C++ eigen library is becoming increasingly more popular these days. According to them, they are on par with the fastest libraries around there and their API looks quite neat to me.

link|flag
Take a look at some benchmarks at eigen.tuxfamily.org/index.php?title=Benchmark/… – gnud Dec 12 '08 at 17:13
vote up 0 vote down

For linear algebra: try JAMA/TNT . That would cover dot products. (+matrix factoring and other stuff) As far as vector cross products (really valid only for 3D, otherwise I think you get into tensors), I'm not sure.

link|flag
vote up 0 vote down

There is a nice Vector library for 3d graphics in the prophecy SDK:

Check out http://www.twilight3d.com/downloads.html

link|flag
vote up 1 vote down

I would stay away from using NRC code for anything other than learning the concepts.

I think what you are looking for is Blitz++

link|flag
clearly Blitz++ underperforms with respect to other ones: eigen.tuxfamily.org/index.php?title=Benchmark/… – Comptrol Jan 30 at 20:45
It depends on the size and kind of the vector. For small vectors whose length is known at compile time, Blitz++ can generate unrolled code for dot products etc., which can't be beat. Large vectors, where tiling and cacheing is of the highest importance, is a different matter. – Seth Sep 22 at 17:54
vote up 1 vote down

Check www.netlib.org, which is maintained by Oak Ridge National Lab and the University of Tennessee. You can search for numerical packages there. There's also Numerical Recipes in C++, which has code that goes with it, but the C++ version of the book is somewhat expensive and I've heard the code described as "terrible." The C and FORTRAN versions are free, and the associated code is quite good.

link|flag
Besides being generally weak, the code in Numerical Recipes also has an odd license attached to its use. – David Nehme Dec 12 '08 at 15:05
When using code from Numerical Recipes in C beware of 'exit' statements in the code. It took me some time to figure out why my application sometimes "crashed" because of this. – mxp Dec 12 '08 at 15:06
About the book itself I'd say it is well written and explains just as much about a problem as necessary. Concerning the provided code, I agree with David. – mxp Dec 12 '08 at 15:10
boost::numeric::ublas uses ublas, which is maintained by netlib. – tgamblin Dec 12 '08 at 15:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.