Array.fold<'T,'State> 함수(F#)
업데이트: 2010년 5월
컬렉션의 각 요소에 함수를 적용하여 계산을 통해 누적기 인수를 스레딩합니다. 입력 함수가 f이고 요소가 i0...iN이면 f (... (f s i0)...) iN.을 계산합니다.
네임스페이스/모듈 경로: Microsoft.FSharp.Collections.Array
어셈블리: FSharp.Core(FSharp.Core.dll)
// Signature:
Array.fold : ('State -> 'T -> 'State) -> 'State -> 'T [] -> 'State
// Usage:
Array.fold folder state array
매개 변수
folder
형식: 'State -> 'T -> 'State지정된 입력 요소의 상태를 업데이트하는 함수입니다.
state
형식: 'State초기 상태입니다.
array
형식: 'T []입력 배열입니다.
반환 값
최종 상태입니다.
설명
컴파일된 어셈블리에서 이 함수의 이름은 Fold입니다. F# 이외의 언어에서 함수에 액세스하거나 리플렉션을 통해 함수에 액세스하는 경우 이 이름을 사용합니다.
예제
다음 코드에서는 Array.fold의 사용 예를 보여 줍니다.
let sumArray array = Array.fold (fun acc elem -> acc + elem) 0 array
printfn "Sum of the elements of array %A is %d." [ 1 .. 3 ] (sumArray [| 1 .. 3 |])
// The following example computes the average of a array.
let averageArray array = (Array.fold (fun acc elem -> acc + float elem) 0.0 array / float array.Length)
// The following example computes the standard deviation of a array.
// The standard deviation is computed by taking the square root of the
// sum of the variances, which are the differences between each value
// and the average.
let stdDevArray array =
let avg = averageArray array
sqrt (Array.fold (fun acc elem -> acc + (float elem - avg) ** 2.0 ) 0.0 array / float array.Length)
let testArray arrayTest =
printfn "Array %A average: %f stddev: %f" arrayTest (averageArray arrayTest) (stdDevArray arrayTest)
testArray [|1; 1; 1|]
testArray [|1; 2; 1|]
testArray [|1; 2; 3|]
// Array.fold is the same as to Array.iter when the accumulator is not used.
let printArray array = Array.fold (fun acc elem -> printfn "%A" elem) () array
printArray [|0.0; 1.0; 2.5; 5.1 |]
Output
플랫폼
Windows 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2
버전 정보
F# 런타임
지원되는 버전: 2.0, 4.0
Silverlight
지원되는 버전: 3
참고 항목
참조
Microsoft.FSharp.Collections 네임스페이스(F#)
변경 기록
날짜 |
변경 내용 |
이유 |
---|---|---|
2010년 5월 |
코드 예제를 추가했습니다. |
향상된 기능 관련 정보 |