MATLAB: Variables are different tha command window values

command windowMATLABvariables

the variable 'Sdaily' appears different in command window and variables window
why is that

Best Answer

In the command window, you seem to be highlighting elements 1323:1325. In the variable window, you seem to be highlighting elements 1351:1353.
But, in the command window view, I can see elements 1351-1353, which do appear different. However, you are not showing that in the command window, it is probably also showing an overall multiplier to the entire displayed vector -- in your case I am guessing that multiplier is 1e4. So, all that is happening is the loss of precision in the how the command window is displayed.
Try just typing
Sdaily(1351:1353)
in the command window, and it should be more comparable.