在此程序中,您將學(xué)習(xí)如何使用Java中的函數(shù)來計算標(biāo)準(zhǔn)差。
該程序使用數(shù)組計算單個系列的標(biāo)準(zhǔn)偏差。
為了計算標(biāo)準(zhǔn)偏差,將創(chuàng)建函數(shù)calculateSD()。包含10個元素的數(shù)組傳遞給該函數(shù),此函數(shù)計算標(biāo)準(zhǔn)偏差并將其返回給main()函數(shù)。
public class StandardDeviation { public static void main(String[] args) { double[] numArray = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; double SD = calculateSD(numArray); System.out.format("標(biāo)準(zhǔn)偏差 = %.6f", SD); } public static double calculateSD(double numArray[]) { double sum = 0.0, standardDeviation = 0.0; int length = numArray.length; for(double num : numArray) { sum += num; } double mean = sum/length; for(double num: numArray) { standardDeviation += Math.pow(num - mean, 2); } return Math.sqrt(standardDeviation/length); } }
注意:此程序?qū)⒂嬎銟悠返臉?biāo)準(zhǔn)偏差。 如果您需要計算S.D. 的總體數(shù)量,從calculateSD()方法返回Math.sqrt(standardDeviation/(length-1))而不是Math.sqrt(standardDeviation/length)。
運行該程序時,輸出為:
標(biāo)準(zhǔn)偏差 = 2.872281
在上面的程序中,我們使用了Math.pow()和Math.sqrt()的幫助來分別計算冪和平方根。