List.average<^T> 函式 (F#)
傳回清單中的項目平均值。
**命名空間/模組路徑:**Microsoft.FSharp.Collections.List
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
List.average : ^T list -> ^T (requires ^T with static member (+) and ^T with static member DivideByInt and ^T with static member Zero)
// Usage:
List.average list
參數
list
型別:^T list輸入清單。
例外狀況
例外狀況 |
條件 |
---|---|
當清單為空白時擲回。 |
傳回值
產生的平均值。
備註
由於這個函式需要完全支援除法運算的型別,因此無法直接在整數清單上使用該函式。根據條件約束指示,項目型別必須支援 DivideByInt,而浮點數型別支援 DivideByInt。 若要計算整數清單的平均,請參閱 List.averageBy 中的範例。
這個函式在已編譯的組件中名為 Average。 如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。
範例
下列程式碼範例說明如何使用 List.average。
// Compute the average of the elements of a list by using List.average.
let avg1 = List.average [0.0; 1.0; 1.0; 2.0]
printfn "%f" avg1
Output
平台
Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2
版本資訊
F# 核心程式庫版本
支援版本:2.0, 4.0,可攜式執行檔 (PE)。