liba 0.1.15
An algorithm library based on C/C++
 
Loading...
Searching...
No Matches
poly.h File Reference

polynomial More...

#include "a.h"
Include dependency graph for poly.h:

Go to the source code of this file.

Functions

void a_poly_swap (a_float *a, a_size n)
 swap between \( \sum_{i=0}^{n}a_{i}x^{i} \) and \( \sum_{i=0}^{n}a_{i}x^{n-i} \)
 
void a_poly_swap_ (a_float *a, a_float *b)
 
a_float a_poly_eval (a_float const *a, a_size n, a_float x)
 horner function for polynomial \( \sum_{i=0}^{n}a_{i}x^{i} \)
 
a_float a_poly_eval_ (a_float const *a, a_float const *b, a_float x)
 
a_float a_poly_evar (a_float const *a, a_size n, a_float x)
 horner function for polynomial \( \sum_{i=0}^{n}a_{i}x^{n-i} \)
 
a_float a_poly_evar_ (a_float const *a, a_float const *b, a_float x)
 

Detailed Description

polynomial