标签:
a+b
a-b
-a
a+=b
a-=b
matrix*scalar
scalar*matrix
matrix/scalar
matrix*=scalar
matrix/=scalar
a = a.transpose()
does not replace a
with its transposea*b
a*=b
(this multiplies on the right: a*=b
is equivalent to a = a*b
C++_Eigen函数库用法笔记——Matrix and Vector Arithmetic
标签:
原文地址:http://www.cnblogs.com/ymxiansen/p/5259554.html