Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Statistical Functions

Array API specification for statistical functions.

A conforming implementation of the array API standard must provide and support the following functions.

Objects in API

cumulative_prod(x, /, *, axis=None, dtype=None, include_initial=False)

Calculates the cumulative product of elements in the input arrayx.

cumulative_sum(x, /, *, axis=None, dtype=None, include_initial=False)

Calculates the cumulative sum of elements in the input arrayx.

max(x, /, *, axis=None, keepdims=False)

Calculates the maximum value of the input arrayx.

mean(x, /, *, axis=None, keepdims=False)

Calculates the arithmetic mean of the input arrayx.

min(x, /, *, axis=None, keepdims=False)

Calculates the minimum value of the input arrayx.

prod(x, /, *, axis=None, dtype=None, keepdims=False)

Calculates the product of input arrayx elements.

std(x, /, *, axis=None, correction=0.0, keepdims=False)

Calculates the standard deviation of the input arrayx.

sum(x, /, *, axis=None, dtype=None, keepdims=False)

Calculates the sum of the input arrayx.

var(x, /, *, axis=None, correction=0.0, keepdims=False)

Calculates the variance of the input arrayx.


[8]ページ先頭

©2009-2025 Movatter.jp