MCPcopy Create free account
hub / github.com/apache/datafusion / compute_cot32

Function compute_cot32

datafusion/functions/src/math/cot.rs:138–141  ·  view source on GitHub ↗
(x: f32)

Source from the content-addressed store, hash-verified

136}
137
138fn compute_cot32(x: f32) -> f32 {
139 let a = f32::tan(x);
140 1.0 / a
141}
142
143fn compute_cot64(x: f64) -> f64 {
144 let a = f64::tan(x);

Callers 1

invoke_with_argsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…