linbox
|
Blackbox of a product: , i.e . More...
#include <block-compose.h>
Inherits BlackboxInterface.
Public Member Functions | |
BlockCompose (const Blackbox1 &A, const Blackbox2 &B) | |
Constructor of C := A*B from blackbox matrices A and B. More... | |
Blackbox of a product: , i.e .
This is a class that multiplies two matrices by implementing an apply method that calls the apply methods of both of the consituent matrices, one after the other.
This class, like the Black Box archetype from which it is derived, is templatized by the vector type to which the matrix is applied. Both constituent matrices must also use this same vector type. For specification of the blackbox members see BlackboxArchetype.
Template parameter: must meet the vector requirement.
|
inline |
Constructor of C := A*B from blackbox matrices A and B.
Build the product A*B of any two black box matrices of compatible dimensions.
A.coldim() == B.rowdim()
. A | blackbox |
B | blackbox |