When I multiply 2 4X4 matrices one numeric the other alpha numeric say with L1,L2,L3, L4 why do I get the answer with cconj(L1,L2,L3,L4)? Also why do I get answers in fractions not decimal?
The Symbolic Math Toolbox assumes all variables are complex, so it adds the conj to be complete. Specifying that the variables are real in the syms declaration prevents that.
To convert the fractions to decimal fractions, use the vpa function. To always get decimal fractions, use the appropriate options in sympref. .