aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/math/exp.c.v
blob: 7818438a80263fed72c3e316c0b9c0beb8865c1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module math

fn C.exp(x f64) f64

fn C.exp2(x f64) f64

// exp calculates exponent of the number (math.pow(math.E, x)).
[inline]
pub fn exp(x f64) f64 {
	return C.exp(x)
}

// exp2 returns the base-2 exponential function of a (math.pow(2, x)).
[inline]
pub fn exp2(x f64) f64 {
	return C.exp2(x)
}