Sample 5-element vectors:
(Row)Vector:
2
4
6
8
10
(Column)Vector:
2
4
6
8
10
1. Vector * Vector, 1 time
LinearAlgebra
(Row)Vector * (Column)Vector = 220
CLHEP
(Row)Vector * (Column)Vector = 220
CovMatrices
(Row)Vector * (Column)Vector = 220
(+2.2000000000e+02 if we use a 1x1 matrix to hold the value)
2. Vector * Vector, 50 times (the product of the vectors is stored on the product)
LinearAlgebra
(Row)Vector * (Column)Vector = 1.1e+04
CLHEP
(Row)Vector *(Column)Vector = 11000
CovMatrices
(Row)Vector * (Column)Vector = 11000
(+1.1000000000e+04 if we use a 1x1 matrix to hold the value)