Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/al-jshen/compute
/ functions
Functions
442 in github.com/al-jshen/compute
⨍
Functions
442
◇
Types & classes
42
Function
test_var
()
src/statistics/moments.rs:139
Function
test_welford_mean
()
src/statistics/moments.rs:109
Function
trapz
Integrate a function `f` from `a` to `b` using the [trapezoid rule](https://en.wikipedia.org/wiki/Trapezoidal_rule) with `n` partitions.
src/integrate/functions.rs:8
Function
ttest_1s
Calculates the t-test for the mean of one set of data. It tests for the null hypothesis that the mean of a sample of independent observations `data` i
src/statistics/tests.rs:4
Function
ttest_2s_student
Calculates the Student's t-test for two independent samples, assuming equal variance. This is less reliable than Welch's t-test. See <https://en.wikip
src/statistics/tests.rs:10
Function
ttest_2s_welch
Calculates Welch's t-test for two independent samples, without assuming equal variance. It tests the hypothesis that the two populations have equal me
src/statistics/tests.rs:18
Method
twoloop
()
src/optimize/lbfgs.rs:7
Method
update
(&mut self, params: &[f64])
src/distributions/normal.rs:83
Method
update
(&mut self, params: &[f64])
src/distributions/exponential.rs:56
Method
update
(&mut self, params: &[f64])
src/distributions/chi_squared.rs:46
Method
update
(&mut self, params: &[f64])
src/distributions/gamma.rs:82
Method
update
(&mut self, params: &[f64])
src/distributions/bernoulli.rs:56
Method
update
(&mut self, params: &[f64])
src/distributions/pareto.rs:55
Method
update
(&mut self, params: &[f64])
src/distributions/t.rs:45
Method
update
(&mut self, params: &[f64])
src/distributions/beta.rs:69
Method
update
(&mut self, params: &[f64])
src/distributions/gumbel.rs:59
Method
update
(&mut self, params: &[f64])
src/distributions/discreteuniform.rs:54
Method
update
(&mut self, params: &[f64])
src/distributions/poisson.rs:52
Method
update
(&mut self, params: &[f64])
src/distributions/uniform.rs:55
Method
update
(&mut self, params: &[f64])
src/distributions/binomial.rs:71
Method
var
Returns the variance of the given Normal distribution.
src/distributions/normal.rs:111
Method
var
(&self)
src/distributions/exponential.rs:88
Method
var
Calculates the variance of the Chi square distribution.
src/distributions/chi_squared.rs:79
Method
var
Calculates the variance of the given Gamma distribution.
src/distributions/gamma.rs:114
Method
var
Calculates the variance, given by `p*q = p(1-p)`.
src/distributions/bernoulli.rs:88
Method
var
Calculates the variance of the Pareto distribution.
src/distributions/pareto.rs:90
Method
var
Calculates the variance of the T distribution. # Remarks This is not defined when degrees of freedom is less than or equal to 1, and infinity when de
src/distributions/t.rs:81
Method
var
Returns the variance of the beta distribution.
src/distributions/beta.rs:100
Method
var
(&self)
src/distributions/multivariatenormal.rs:110
Method
var
Calculates the variance of the given Gumbel distribution.
src/distributions/gumbel.rs:84
Method
var
Calculates the variance of the given Uniform distribution.
src/distributions/discreteuniform.rs:87
Method
var
Calculates the variance, which is given by the rate parameter.
src/distributions/poisson.rs:82
Method
var
Calculates the variance of the given Uniform distribution.
src/distributions/uniform.rs:89
Method
var
Calculates the variance, which is given by `npq`, where `q = 1-p`
src/distributions/binomial.rs:287
Method
vcat
Vertical concatenation of matrices. Adds `other` below the calling matrix.
src/linalg/array/matrix.rs:460
Method
vrepeat
Repeat self vertically. That is, make `n` total copies of self and vertically concatenate them all together.
src/linalg/array/matrix.rs:486
Method
with_capacity
(n: usize)
src/linalg/array/vec.rs:34
Method
with_capacity
Make an empty matrix with a certain capacity.
src/linalg/array/matrix.rs:45
Method
with_shape
Make a matrix with a given shape, initialized with garbage values.
src/linalg/array/matrix.rs:54
Method
with_stepsize
(stepsize: f64)
src/optimize/adam.rs:67
Method
zeros
(n: usize)
src/linalg/array/vec.rs:58
Method
zeros
Make a matrix filled with zeros.
src/linalg/array/matrix.rs:35
← previous
401–442 of 442, ranked by callers