//获取最大值
public double
CalculationMax(ArrayList sampleList)
{
try
{
double
maxDevation = 0.0;
int
totalCount = sampleList.Count;
if
(totalCount >= 1)
{
double
max = Double.Parse(sampleList[0].ToString());
for
(int i = 0; i < totalCount; i++)
{
double
temp = Double.Parse(sampleList[i].ToString());
if
(temp > max)
{