(This is not really an answer, but more than I can fit in a comment.)
I'm with gnovice on this, most likely problem or that you have overloaded the mode command somehow. Try which mode, clear mode or just restarting Matlab.
I cannot reproduce, as shown below:
>> sample =[...
0.4375 0.3750 0.5313 0.4375 0.8750 0.3750 ...
0.5313 0.6563 0.3750 0.4375 0.5313 ...
0.5313 0.8438 0.8438 0.4375 0.5313 0.5313 ...
0.5313 0.4375 0.3750 0.4375 0.3750 ...
0.3750 0.5313 0.3750 0.8750 0.5313 0.8438 ...
0.4375 0.0313 0.3750 0.8438 0.8438 ...
0.3750 0.8750 0.8750 0.5313 0.4375 0.8750 ...
1.7813 0.3750 0.8750 0.3750 0.3750 ...
0.3750 0.4375 0.3750 0.3750 0.8750 0.3750];
>> mode(sample)
ans =
0.375
If I add small random numbers, I can change the answer ... but not set it to zero.
>> format short g
>> sample = sample .* (1+100*eps*randn(size(sample)))
sample =
Columns 1 through 11
0.4375 0.375 0.5313 0.4375 0.875 0.375 0.5313 0.6563 0.375 0.4375 0.5313
Columns 12 through 22
0.5313 0.8438 0.8438 0.4375 0.5313 0.5313 0.5313 0.4375 0.375 0.4375 0.375
Columns 23 through 33
0.375 0.5313 0.375 0.875 0.5313 0.8438 0.4375 0.0313 0.375 0.8438 0.8438
Columns 34 through 44
0.375 0.875 0.875 0.5313 0.4375 0.875 1.7813 0.375 0.875 0.375 0.375
Columns 45 through 50
0.375 0.4375 0.375 0.375 0.875 0.375
>> mode(sample)
ans =
0.0313
It looks like you are somewhere between, since your length(unique(sample)) returned 12. For reference, I get
>> length(unique(sample)) %After the initial setup above
ans =
8
>> length(unique(sample)) %After adding small random perturbations
ans =
50
which modein the command window. If it says it's a variable or a function not in the MATLAB toolbox, then you've inadvertently shadowed the built-in MODE function. – gnovice Feb 2 '12 at 21:300but0.0313, I could explain it. ;-) Anyway, out of curiosity, what is the result when you executelength(unique(sample))? – arne.b Feb 2 '12 at 21:48