MATLAB: Is the ‘sum’ function also outputting elements of the matrix

forgot semicolonmatrixoutput errorsum

I have a column vector that I am trying to take the sum of, but I want it to display only the sum. Every time I use the sum function it also spits out every element in the matrix, along with the sum, which I do not want it to do. This seemed like an easy fix, but I couldn't find anything online.

Best Answer

Did you write your OWN function called sum? Type this on the command line:
which sum -all
If you have written a function called sum, it will then show up. Delete it, as sum is a tremendously important tool in MATLAB. At the very least rename it, or move it off your search path.
The fact is, sum does NOT do as you describe, so the only way what you describe can happen is if you did exactly what I suggest.