共用方式為


Seq.windowed<'T> 函式 (F#)

傳回序列,這個序列會為從輸入序列取出的包含項目產生滑動視窗。 每個傳回的視窗都是最新的陣列。

**命名空間/模組路徑:**Microsoft.FSharp.Collections.Seq

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
Seq.windowed : int -> seq<'T> -> seq<'T []>

// Usage:
Seq.windowed windowSize source

參數

  • windowSize
    型別:int

    每個視窗中的項目數目。

  • source
    型別:seq<'T>

    輸入序列。

例外狀況

例外狀況

條件

ArgumentException

當輸入序列為空白時擲回。

ArgumentNullException

當輸入序列為 null 時擲回。

傳回值

結果序列。

備註

這個函式在已編譯的組件中名為 Windowed。 如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。

範例

下列範例示範如何使用 Seq.windowed 做為數字序列移動平均計算的一部分。

let seqNumbers = [ 1.0; 1.5; 2.0; 1.5; 1.0; 1.5 ] :> seq<float>
let seqWindows = Seq.windowed 3 seqNumbers
let seqMovingAverage = Seq.map Array.average seqWindows
printfn "Initial sequence: "
printSeq seqNumbers
printfn "\nWindows of length 3: "
printSeq seqWindows
printfn "\nMoving average: "
printSeq seqMovingAverage
  

平台

Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2

版本資訊

F# 核心程式庫版本

支援版本:2.0, 4.0,可攜式執行檔 (PE)。

請參閱

參考

Collections.Seq 模組 (F#)

Microsoft.FSharp.Collections 命名空間 (F#)