├── .github └── workflows │ ├── go.yml │ └── release.yml ├── LICENSE ├── README.md ├── boolean └── bitmap │ ├── bitmap.go │ └── bitmap_test.go ├── combinatorics ├── combinatorics.go ├── factorial.go ├── factorial_test.go ├── falling_factorial.go ├── falling_factorial_test.go ├── partial_permutations.go ├── partial_permutations_test.go ├── rising_factorial.go └── rising_factorial_test.go ├── docs └── complexity.md ├── go.mod ├── maths.go ├── numbertheory ├── aliquot_sum.go ├── aliquot_sum_test.go ├── coprime.go ├── coprime_test.go ├── digit_sum.go ├── digit_sum_test.go ├── digital_root.go ├── digital_root_test.go ├── gcd.go ├── gcd_extended.go ├── gcd_extended_test.go ├── gcd_test.go ├── lcm.go ├── lcm_test.go ├── mobius.go ├── mobius_test.go ├── modular_exponentiation.go ├── modular_exponentiation_test.go ├── number_of_divisors.go ├── number_of_divisors_test.go ├── number_theory.go ├── politeness.go ├── politeness_test.go ├── polygonal_number.go ├── polygonal_number_test.go ├── prime_factorization.go ├── prime_factorization_test.go ├── primefactorization │ ├── aliquot_sum.go │ ├── mobius.go │ ├── number_of_divisors.go │ ├── politeness.go │ ├── prime_factorization.go │ ├── prime_factorization_test.go │ ├── radical.go │ ├── sum_of_divisors.go │ └── totient.go ├── primorial.go ├── primorial_test.go ├── radical.go ├── radical_test.go ├── sum_of_divisors.go ├── sum_of_divisors_test.go ├── totient.go └── totient_test.go └── statistics ├── central_moment.go ├── central_moment_test.go ├── dot_product.go ├── dot_product_test.go ├── excess_sample_kurtosis.go ├── excess_sample_kurtosis_test.go ├── generalized_mean.go ├── generalized_mean_test.go ├── geometric_mean.go ├── geometric_mean_test.go ├── harmonic_mean.go ├── harmonic_mean_test.go ├── interquartile_range.go ├── interquartile_range_test.go ├── kurtosis.go ├── kurtosis_test.go ├── logistic_function.go ├── logistic_function_test.go ├── max.go ├── max_test.go ├── mean.go ├── mean_test.go ├── median.go ├── median_test.go ├── min.go ├── min_test.go ├── mode.go ├── mode_test.go ├── power_sum.go ├── power_sum_around.go ├── power_sum_test.go ├── quantile.go ├── quantile_test.go ├── range.go ├── range_test.go ├── root_mean_square.go ├── root_mean_square_test.go ├── sample_kurtosis.go ├── sample_kurtosis_test.go ├── sample_skewness.go ├── sample_skewness_test.go ├── sample_standard_deviation.go ├── sample_standard_deviation_test.go ├── sample_standard_error.go ├── sample_standard_error_test.go ├── sample_variance.go ├── sample_variance_test.go ├── simple_moving_average.go ├── simple_moving_average_test.go ├── skewness.go ├── skewness_test.go ├── softmax.go ├── softmax_test.go ├── standard_deviation.go ├── standard_deviation_test.go ├── standard_error.go ├── standard_error_test.go ├── statistics.go ├── statistics_test.go ├── sum.go ├── sum_test.go ├── variance.go ├── variance_test.go ├── weighted_generalized_mean.go └── weighted_generalized_mean_test.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/README.md -------------------------------------------------------------------------------- /boolean/bitmap/bitmap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/boolean/bitmap/bitmap.go -------------------------------------------------------------------------------- /boolean/bitmap/bitmap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/boolean/bitmap/bitmap_test.go -------------------------------------------------------------------------------- /combinatorics/combinatorics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/combinatorics/combinatorics.go -------------------------------------------------------------------------------- /combinatorics/factorial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/combinatorics/factorial.go -------------------------------------------------------------------------------- /combinatorics/factorial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/combinatorics/factorial_test.go -------------------------------------------------------------------------------- /combinatorics/falling_factorial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/combinatorics/falling_factorial.go -------------------------------------------------------------------------------- /combinatorics/falling_factorial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/combinatorics/falling_factorial_test.go -------------------------------------------------------------------------------- /combinatorics/partial_permutations.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/combinatorics/partial_permutations.go -------------------------------------------------------------------------------- /combinatorics/partial_permutations_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/combinatorics/partial_permutations_test.go -------------------------------------------------------------------------------- /combinatorics/rising_factorial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/combinatorics/rising_factorial.go -------------------------------------------------------------------------------- /combinatorics/rising_factorial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/combinatorics/rising_factorial_test.go -------------------------------------------------------------------------------- /docs/complexity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/docs/complexity.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/theriault/maths 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /maths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/maths.go -------------------------------------------------------------------------------- /numbertheory/aliquot_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/aliquot_sum.go -------------------------------------------------------------------------------- /numbertheory/aliquot_sum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/aliquot_sum_test.go -------------------------------------------------------------------------------- /numbertheory/coprime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/coprime.go -------------------------------------------------------------------------------- /numbertheory/coprime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/coprime_test.go -------------------------------------------------------------------------------- /numbertheory/digit_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/digit_sum.go -------------------------------------------------------------------------------- /numbertheory/digit_sum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/digit_sum_test.go -------------------------------------------------------------------------------- /numbertheory/digital_root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/digital_root.go -------------------------------------------------------------------------------- /numbertheory/digital_root_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/digital_root_test.go -------------------------------------------------------------------------------- /numbertheory/gcd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/gcd.go -------------------------------------------------------------------------------- /numbertheory/gcd_extended.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/gcd_extended.go -------------------------------------------------------------------------------- /numbertheory/gcd_extended_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/gcd_extended_test.go -------------------------------------------------------------------------------- /numbertheory/gcd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/gcd_test.go -------------------------------------------------------------------------------- /numbertheory/lcm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/lcm.go -------------------------------------------------------------------------------- /numbertheory/lcm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/lcm_test.go -------------------------------------------------------------------------------- /numbertheory/mobius.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/mobius.go -------------------------------------------------------------------------------- /numbertheory/mobius_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/mobius_test.go -------------------------------------------------------------------------------- /numbertheory/modular_exponentiation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/modular_exponentiation.go -------------------------------------------------------------------------------- /numbertheory/modular_exponentiation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/modular_exponentiation_test.go -------------------------------------------------------------------------------- /numbertheory/number_of_divisors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/number_of_divisors.go -------------------------------------------------------------------------------- /numbertheory/number_of_divisors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/number_of_divisors_test.go -------------------------------------------------------------------------------- /numbertheory/number_theory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/number_theory.go -------------------------------------------------------------------------------- /numbertheory/politeness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/politeness.go -------------------------------------------------------------------------------- /numbertheory/politeness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/politeness_test.go -------------------------------------------------------------------------------- /numbertheory/polygonal_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/polygonal_number.go -------------------------------------------------------------------------------- /numbertheory/polygonal_number_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/polygonal_number_test.go -------------------------------------------------------------------------------- /numbertheory/prime_factorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/prime_factorization.go -------------------------------------------------------------------------------- /numbertheory/prime_factorization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/prime_factorization_test.go -------------------------------------------------------------------------------- /numbertheory/primefactorization/aliquot_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primefactorization/aliquot_sum.go -------------------------------------------------------------------------------- /numbertheory/primefactorization/mobius.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primefactorization/mobius.go -------------------------------------------------------------------------------- /numbertheory/primefactorization/number_of_divisors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primefactorization/number_of_divisors.go -------------------------------------------------------------------------------- /numbertheory/primefactorization/politeness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primefactorization/politeness.go -------------------------------------------------------------------------------- /numbertheory/primefactorization/prime_factorization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primefactorization/prime_factorization.go -------------------------------------------------------------------------------- /numbertheory/primefactorization/prime_factorization_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primefactorization/prime_factorization_test.go -------------------------------------------------------------------------------- /numbertheory/primefactorization/radical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primefactorization/radical.go -------------------------------------------------------------------------------- /numbertheory/primefactorization/sum_of_divisors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primefactorization/sum_of_divisors.go -------------------------------------------------------------------------------- /numbertheory/primefactorization/totient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primefactorization/totient.go -------------------------------------------------------------------------------- /numbertheory/primorial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primorial.go -------------------------------------------------------------------------------- /numbertheory/primorial_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/primorial_test.go -------------------------------------------------------------------------------- /numbertheory/radical.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/radical.go -------------------------------------------------------------------------------- /numbertheory/radical_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/radical_test.go -------------------------------------------------------------------------------- /numbertheory/sum_of_divisors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/sum_of_divisors.go -------------------------------------------------------------------------------- /numbertheory/sum_of_divisors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/sum_of_divisors_test.go -------------------------------------------------------------------------------- /numbertheory/totient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/totient.go -------------------------------------------------------------------------------- /numbertheory/totient_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/numbertheory/totient_test.go -------------------------------------------------------------------------------- /statistics/central_moment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/central_moment.go -------------------------------------------------------------------------------- /statistics/central_moment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/central_moment_test.go -------------------------------------------------------------------------------- /statistics/dot_product.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/dot_product.go -------------------------------------------------------------------------------- /statistics/dot_product_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/dot_product_test.go -------------------------------------------------------------------------------- /statistics/excess_sample_kurtosis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/excess_sample_kurtosis.go -------------------------------------------------------------------------------- /statistics/excess_sample_kurtosis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/excess_sample_kurtosis_test.go -------------------------------------------------------------------------------- /statistics/generalized_mean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/generalized_mean.go -------------------------------------------------------------------------------- /statistics/generalized_mean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/generalized_mean_test.go -------------------------------------------------------------------------------- /statistics/geometric_mean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/geometric_mean.go -------------------------------------------------------------------------------- /statistics/geometric_mean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/geometric_mean_test.go -------------------------------------------------------------------------------- /statistics/harmonic_mean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/harmonic_mean.go -------------------------------------------------------------------------------- /statistics/harmonic_mean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/harmonic_mean_test.go -------------------------------------------------------------------------------- /statistics/interquartile_range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/interquartile_range.go -------------------------------------------------------------------------------- /statistics/interquartile_range_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/interquartile_range_test.go -------------------------------------------------------------------------------- /statistics/kurtosis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/kurtosis.go -------------------------------------------------------------------------------- /statistics/kurtosis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/kurtosis_test.go -------------------------------------------------------------------------------- /statistics/logistic_function.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/logistic_function.go -------------------------------------------------------------------------------- /statistics/logistic_function_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/logistic_function_test.go -------------------------------------------------------------------------------- /statistics/max.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/max.go -------------------------------------------------------------------------------- /statistics/max_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/max_test.go -------------------------------------------------------------------------------- /statistics/mean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/mean.go -------------------------------------------------------------------------------- /statistics/mean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/mean_test.go -------------------------------------------------------------------------------- /statistics/median.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/median.go -------------------------------------------------------------------------------- /statistics/median_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/median_test.go -------------------------------------------------------------------------------- /statistics/min.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/min.go -------------------------------------------------------------------------------- /statistics/min_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/min_test.go -------------------------------------------------------------------------------- /statistics/mode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/mode.go -------------------------------------------------------------------------------- /statistics/mode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/mode_test.go -------------------------------------------------------------------------------- /statistics/power_sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/power_sum.go -------------------------------------------------------------------------------- /statistics/power_sum_around.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/power_sum_around.go -------------------------------------------------------------------------------- /statistics/power_sum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/power_sum_test.go -------------------------------------------------------------------------------- /statistics/quantile.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/quantile.go -------------------------------------------------------------------------------- /statistics/quantile_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/quantile_test.go -------------------------------------------------------------------------------- /statistics/range.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/range.go -------------------------------------------------------------------------------- /statistics/range_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/range_test.go -------------------------------------------------------------------------------- /statistics/root_mean_square.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/root_mean_square.go -------------------------------------------------------------------------------- /statistics/root_mean_square_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/root_mean_square_test.go -------------------------------------------------------------------------------- /statistics/sample_kurtosis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_kurtosis.go -------------------------------------------------------------------------------- /statistics/sample_kurtosis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_kurtosis_test.go -------------------------------------------------------------------------------- /statistics/sample_skewness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_skewness.go -------------------------------------------------------------------------------- /statistics/sample_skewness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_skewness_test.go -------------------------------------------------------------------------------- /statistics/sample_standard_deviation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_standard_deviation.go -------------------------------------------------------------------------------- /statistics/sample_standard_deviation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_standard_deviation_test.go -------------------------------------------------------------------------------- /statistics/sample_standard_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_standard_error.go -------------------------------------------------------------------------------- /statistics/sample_standard_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_standard_error_test.go -------------------------------------------------------------------------------- /statistics/sample_variance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_variance.go -------------------------------------------------------------------------------- /statistics/sample_variance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sample_variance_test.go -------------------------------------------------------------------------------- /statistics/simple_moving_average.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/simple_moving_average.go -------------------------------------------------------------------------------- /statistics/simple_moving_average_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/simple_moving_average_test.go -------------------------------------------------------------------------------- /statistics/skewness.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/skewness.go -------------------------------------------------------------------------------- /statistics/skewness_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/skewness_test.go -------------------------------------------------------------------------------- /statistics/softmax.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/softmax.go -------------------------------------------------------------------------------- /statistics/softmax_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/softmax_test.go -------------------------------------------------------------------------------- /statistics/standard_deviation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/standard_deviation.go -------------------------------------------------------------------------------- /statistics/standard_deviation_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/standard_deviation_test.go -------------------------------------------------------------------------------- /statistics/standard_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/standard_error.go -------------------------------------------------------------------------------- /statistics/standard_error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/standard_error_test.go -------------------------------------------------------------------------------- /statistics/statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/statistics.go -------------------------------------------------------------------------------- /statistics/statistics_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/statistics_test.go -------------------------------------------------------------------------------- /statistics/sum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sum.go -------------------------------------------------------------------------------- /statistics/sum_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/sum_test.go -------------------------------------------------------------------------------- /statistics/variance.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/variance.go -------------------------------------------------------------------------------- /statistics/variance_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/variance_test.go -------------------------------------------------------------------------------- /statistics/weighted_generalized_mean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/weighted_generalized_mean.go -------------------------------------------------------------------------------- /statistics/weighted_generalized_mean_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theriault/maths/HEAD/statistics/weighted_generalized_mean_test.go --------------------------------------------------------------------------------