www.dztechnologies.com
Email:
david.kuddes@gmail.com
214-557-2436
Mail:
DZ Technologies, Inc
17194 Preston Rd
Ste 102-272
Dallas, TX 75248




-Wireless Solar Powered School Zone Flashers - Acheived 90% share of current US market

/*--------------------------------------------------------------*
max input for x = 0.604 volts at 0 "
max output for y = 0.35" at 0 volts in
Date Created: Apr 16 2007
Time Created: 03:01:45 PM
This function returns a predicted f(x) value
for the function Tenth order polynomial.
Regression Statistics:
R2 = 0.995778412312957
Adjusted R2 = 0.993433085820155
Standard Error = 8.64038137462043E-03
*--------------------------------------------------------------*/
float a = 51046.4238233654;
float b = - 168348.742522748;
float c = 236230.986254543;
float d = - 184203.12519061;
float e = 87403.4634958295;
float f = - 25973.0522927613;
float g = 4795.77837590823;
float h = - 529.654601126893;
float i = 33.427633122769;
float j = - 1.81105747002303;
float k = 0.347326582255401;
float result;
result = (((((((((((a *(pow(x, 10))) + (b *(pow(x, 9)))) + (c *(pow(x, 8))))
+ (d *(pow(x, 7)))) + (e *(pow(x, 6)))) + (f *(pow(x, 5)))) + (g
*(pow(x, 4)))) + (h *(pow(x, 3)))) + (i *(pow(x, 2)))) + (j *x))
+ k);
-Good Old Transfer Function Fitting and Dynamic Tuning