Alex Bikfalvi
You are here: Home > Projects > SimStream > Documentation
00001 #pragma once 00002 00003 #include "Math.h" 00004 00005 struct ChebSeriesStruct { 00006 double * c; /* coefficients */ 00007 int order; /* order of expansion */ 00008 double a; /* lower interval point */ 00009 double b; /* upper interval point */ 00010 int order_sp; /* effective single precision order */ 00011 }; 00012 00013 typedef struct ChebSeriesStruct ChebSeries; 00014 00015 int ChebEval(const ChebSeries* cs, const double x, MathResult* result);
Last updated: February 8, 2011