I'd like to implemente a matrix multiplication among three matrices sized at 1*256, 256*256 and 256*1. But I'm stucked at matrices type setting and multiplication.
Currently my code is like
Inner[Times, Table[N[XSub[10, r]], {1}, {r, 1, 256}], MatrixForm[A], Table[N[YSub[10, s]], {s, 1, 256}, {1}]]
where A sized at 256*256.
The result I expected is like

Two Questions:
- I'm confused at creating the 1D matrix by
Table[],List[]or something else. My code above can create the Matrices I want, but it dosen't work on Matrix multiplication I wanted. - I've tried to combine
.and*to reach expected result on small-size matrices. but it dosen't work on matrices I created above.
MatrixFormis for display only. It kills a computation when it appears inside one. – m_goldberg Jul 04 '20 at 21:26