root / approxBasisSollya / approxbaso.h @ 299
Historique | Voir | Annoter | Télécharger (641 octet)
1 |
/** @approbaso.h
|
---|---|
2 |
* Function approximation basis defined and evaluated in Sollya.
|
3 |
* @author S.T.
|
4 |
* @date 2018-03-07
|
5 |
*/
|
6 |
/******************************************************************************/
|
7 |
|
8 |
/*
|
9 |
* Prerequisites for use:
|
10 |
* The user must include
|
11 |
*/
|
12 |
|
13 |
#ifndef APPROX_BASIS_SOLLYA_h
|
14 |
#define APPROX_BASIS_SOLLYA_h
|
15 |
|
16 |
struct ApproxBasisSollya
|
17 |
{ |
18 |
unsigned int elementsNumber; |
19 |
pobyso_func_exp_t * basisElements; |
20 |
}; |
21 |
|
22 |
/**
|
23 |
* Read a basis from a file handle.
|
24 |
* @param fileHandle;
|
25 |
* @return a pointer on a basis or NULL if something goes wrong.
|
26 |
*/
|
27 |
struct ApproxBasisSollya*
|
28 |
abs_read_basis_from_handle(FILE* fileHandle); |
29 |
|
30 |
#endif
|
31 |
|