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