mirror of
https://gitee.com/Lamdonn/varch.git
synced 2025-12-07 17:26:43 +08:00
31 lines
788 B
Markdown
31 lines
788 B
Markdown
## 介绍
|
|
|
|
`flmath`为一个大型浮点数数学运算模块,依赖于`floatl`模块,支持常用的数学运算函数。
|
|
|
|
## 接口
|
|
|
|
### 运算函数
|
|
|
|
```c
|
|
floatl floatl_sin(floatl x);
|
|
floatl floatl_cos(floatl x);
|
|
floatl floatl_sec(floatl x);
|
|
floatl floatl_csc(floatl x);
|
|
floatl floatl_tan(floatl x);
|
|
floatl floatl_exp(floatl x);
|
|
floatl floatl_ln(floatl x);
|
|
floatl floatl_log(floatl x, floatl y);
|
|
floatl floatl_log2(floatl x);
|
|
floatl floatl_log10(floatl x);
|
|
floatl floatl_sigmoid(floatl x);
|
|
floatl floatl_dsigmoid(floatl x);
|
|
floatl floatl_sinh(floatl x);
|
|
floatl floatl_cosh(floatl x);
|
|
floatl floatl_tanh(floatl x);
|
|
floatl floatl_coth(floatl x);
|
|
floatl floatl_sech(floatl x);
|
|
floatl floatl_csch(floatl x);
|
|
floatl floatl_sqrt(floatl x);
|
|
floatl floatl_pow(floatl x, floatl y);
|
|
```
|