MATLAB: Troubles with 14×14 matrix

14x14crankerrorMATLABmatrixmechanismslider

I have been creating a 14 by 14 matrix on Matlab to help my assessment, but, when I keyed in the values long hand, I got an answer, yet when I keyed them in shorthand, the matrix produced replaced all the values with 1. Why is this?
<<
>>

Best Answer

It looks like A is classified as a logical variable. Try
A = double(A);
then change the values manually.