|
template<size_t N, size_t M> |
static double | Mean (const Matrix< N, M > &U) |
| 行列U全体の平均を計算する
|
|
template<size_t N, size_t M> |
static void | MeanRow (const Matrix< N, M > &U, Matrix< 1, M > &y) |
| 行列Uの横方向の平均を計算して縦ベクトルを出力する関数
|
|
template<size_t N, size_t M> |
static void | MeanColumn (const Matrix< N, M > &U, Matrix< N, 1 > &y) |
| 行列Uの縦方向の平均を計算して横ベクトルを出力する関数
|
|
template<size_t N> |
static double | Mean (const std::array< double, N > &u) |
| 配列uの平均を計算する
|
|
template<size_t N, size_t M> |
static double | SampledVariance (const Matrix< N, M > &U) |
| 行列U全体の標本分散を求める
|
|
template<size_t N> |
static double | SampledVariance (const std::array< double, N > &u) |
| 配列uの標本分散を求める
|
|
template<size_t N, size_t M> |
static double | UnbiasedVariance (const Matrix< N, M > &U) |
| 行列U全体の不偏分散を求める
|
|
template<size_t N, size_t M> |
static void | UnbiasedVarianceRow (const Matrix< N, M > &U, Matrix< 1, M > &y) |
| 行列Uの横方向の不偏分散を求めて縦ベクトルを出力する関数
|
|
template<size_t N, size_t M> |
static void | UnbiasedVarianceColumn (const Matrix< N, M > &U, Matrix< N, 1 > &y) |
| 行列Uの縦方向の不偏分散を求めて横ベクトルを出力する関数
|
|
template<size_t N> |
static double | UnbiasedVariance (const std::array< double, N > &u) |
| 配列uの不偏分散を求める
|
|
template<size_t N, size_t M> |
static double | Variance (const Matrix< N, M > &U) |
| 行列U全体の分散を求める(エイリアス)
|
|
template<size_t N, size_t M> |
static void | VarianceRow (const Matrix< N, M > &U, Matrix< 1, M > &y) |
| 行列Uの横方向の不偏分散を求めて縦ベクトルを出力する関数(エイリアス)
|
|
template<size_t N, size_t M> |
static void | VarianceColumn (const Matrix< N, M > &U, Matrix< N, 1 > &y) |
| 行列Uの縦方向の不偏分散を求めて横ベクトルを出力する関数(エイリアス)
|
|
template<size_t N> |
static double | Variance (const std::array< double, N > &u) |
| 配列uの分散を求める(エイリアス)
|
|
template<size_t N, size_t M> |
static double | StandardDeviation (const Matrix< N, M > &U) |
| 行列U全体の標準偏差を求める
|
|
template<size_t N, size_t M> |
static void | StandardDeviationRow (const Matrix< N, M > &U, Matrix< 1, M > &y) |
| 行列Uの横方向の標準偏差を求めて縦ベクトルを出力する関数
|
|
template<size_t N, size_t M> |
static void | StandardDeviationColumn (const Matrix< N, M > &U, Matrix< N, 1 > &y) |
| 行列Uの縦方向の標準偏差を求めて横ベクトルを出力する関数
|
|
template<size_t N> |
static double | StandardDeviation (const std::array< double, N > &u) |
| 配列uの標準偏差を求める
|
|
template<size_t N, size_t M> |
static double | Covariance (const Matrix< N, M > &U1, const Matrix< N, M > &U2) |
| 行列U1と行列U2の間の共分散を計算する
|
|
template<size_t N> |
static double | Covariance (const std::array< double, N > &u1, const std::array< double, N > &u2) |
| 配列u1と配列u2の間の共分散を計算する
|
|
template<size_t N, size_t M> |
static double | Correlation (const Matrix< N, M > &U1, const Matrix< N, M > &U2) |
| 行列U1と行列U2の間のピアソンの相関係数を求める
|
|
template<size_t N> |
static double | Correlation (const std::array< double, N > &u1, const std::array< double, N > &u2) |
| 配列u1と配列u2の間のピアソンの相関係数を求める
|
|
統計処理クラス(テンプレート行列&std::array版)