How do I apply level 1 blas on a boost::numeric::ublas matrix? For example I want to compute the maximum entry or the sum of all entries. Using norm_1 or norm_inf on a matrix gives no compiler error but returns (as it seems to me) arbitrary results. I am using boost 1.42
|
feedback
|
|
If you look at hannes's example, the last row of the matrix (i=99, j=0...99) contains:
If you sum those entries, you get | |||||||
feedback
|
|
A minimal example looks like this:
It should give 99, but yields 994950. This is a one-liner that at least solves the given task:
| ||||
feedback
|