#include <math.h>
#include <iostream>
#include "chebyshev.h"
#include "tnt_array1d.h"
#include "tnt_array2d.h"
#include "jama_svd.h"
#include "linalg.h"
Go to the source code of this file.
Functions | |
double | ChebyshevPolynomial (int n, double x) |
Returns the Chebyshev Polynomial ![]() | |
ostream & | operator<< (ostream &s, const CChebyshevApprox1D &A) |
istream & | operator>> (istream &s, CChebyshevApprox1D &A) |
ostream & | operator<< (ostream &s, const CChebyshevApprox2D &A) |
istream & | operator>> (istream &s, CChebyshevApprox2D &A) |
double ChebyshevPolynomial | ( | int | n, | |
double | x | |||
) |
Returns the Chebyshev Polynomial .
n | order of the polynomial you want | |
value | you want the polynomial evaulated at |
Definition at line 23 of file chebyshev.cc.
ostream& operator<< | ( | ostream & | s, | |
const CChebyshevApprox2D & | A | |||
) |
Definition at line 885 of file chebyshev.cc.
ostream& operator<< | ( | ostream & | s, | |
const CChebyshevApprox1D & | A | |||
) |
Definition at line 450 of file chebyshev.cc.
istream& operator>> | ( | istream & | s, | |
CChebyshevApprox2D & | A | |||
) |
Definition at line 896 of file chebyshev.cc.
istream& operator>> | ( | istream & | s, | |
CChebyshevApprox1D & | A | |||
) |
Definition at line 459 of file chebyshev.cc.