I have three set of matrix and I am required to produce the desired output. The problem is I didn't know the operation to solve the matrix. The matrix:
a= [[1]
[1]
[0]
[0]]
b= [[ 1. ]
[-0.5 ]
[-0.8660254]
[ 0. ]]
c= [[ 1]
[-1]
[ 0]
[ 0]]
Using the three matrix, I need to produce the result of
d=[[ 1]
[0.5]
[0.86]
[0]]
So what is a?b?c?=d. I hope anyone may help me. Thank you.