How to add matrices with alglib?

I already know how to multiply two matrices with alglib using rmatrixgemm(see this question ).

Is there a way to calculate a linear combination of two matrices without using this function by setting Bto identity? That would not be very effective.

Alglib provides tons of sophisticated algorithms, but I cannot find such a basic function.

The allowance is here .

+3
source share
1 answer

Why don't you try using another library built for mathematical math, such as MTL4?

http://www.simunova.com/en/node/24

Manually - http://www.simunova.com/node/148

0
source

All Articles