An open API service indexing awesome lists of open source software.

https://github.com/manifoldfinance/qquarticroots

C library for KDB+ quartic solver
https://github.com/manifoldfinance/qquarticroots

Last synced: 7 months ago
JSON representation

C library for KDB+ quartic solver

Awesome Lists containing this project

README

          

# qQuarticRoots
C library for KDB+ quartic solver

## compile quartic.so
```bash
$ make
```
## load quartic.q to run quartic function
```q
q) \l quartic.q
q) quarticRoots[ 3.0; 6.0; -123.0; -126.0; 1080.0]
5 3 -4 -6f
```