trueno/vector/ops/transcendental/mod.rs
1//! Transcendental mathematical functions for Vector<f32>
2//!
3//! This module provides element-wise transcendental functions including:
4//! - Exponentials: `exp`, `ln`, `log2`, `log10`
5//! - Trigonometric: `sin`, `cos`, `tan`, `asin`, `acos`, `atan`
6//! - Hyperbolic: `sinh`, `cosh`, `tanh`, `asinh`, `acosh`, `atanh`
7
8mod exp_log;
9mod hyperbolic;
10mod trigonometric;
11
12#[cfg(test)]
13mod tests;