I am trying to multiply a MatrixSymbol and Matrix and access the value inside it's multiplication
a = MatrixSymbol('a', 1, 4)
l = Matrix([1,2,3,4])
print((a*l)[0])
This error IndexError: Single indexing is only supported when the number of columns is known.
I would like to access the inner multiplication a[0][0]*1 + a[0][1]*2....