I have two matrices - s1 and s2.
I want their sum to remain unevaluated.
For instance, the command
s1 + s2 // MatrixForm should result to two separate matrices joined by the plus operator.
I guess that I have to wrap s1 + s2 inside a function like Hold or Unevaluated, but I cannot find the proper workaround.
Any ideas?
Inactivate[MatrixForm[s1] + MatrixForm[s2], Plus]$\endgroup$Row[{MatrixForm[s1] , "+", MatrixForm[s2]}]? $\endgroup$