计算 Maxima 中两个矩阵的元素乘积的元素之和

Calculate the sum of the elements of an elementwise product of two matrices in Maxima

标题中的内容以及我目前已经尝试过的内容:

sum(lambda([i,j], M[i,j] * Ma[i,j]))

这个表达式给我 Wrong number of arguments 错误。 sum() 不对列表进行操作,还是我在 sum 函数调用中遗漏了类似表达式的内容?

原来答案很简单:

lsum(i,i, list_matrix_entries(M3 * Ma))

这在 LaTeX 中基本上转化为 (\sum_{i\in{M*Ma 的元素集}} i)。