标签: matrix linear-algebra maxima
例如 矩阵:
a b c d e f g h i ->
列向量
a+b+c d+e+f g+h+i
我可以想到带有和的丑陋解,或者可能是乘以行向量的丑陋解,但是有什么好方法吗?
答案 0 :(得分:3)
矩阵表示为列表集合的包装,其中每个列表都是一行。因此,映射matrix的参数就是映射行。您可以执行以下操作:map(lambda([r], [lsum(x, x, r)]), A),其中A是您的矩阵。
matrix
map(lambda([r], [lsum(x, x, r)]), A)
A