
July 9th, 2003, 03:45 PM
|
 |
Doggie
|
|
Join Date: Jul 2003
Location: Seattle, WA
Posts: 751
  
Time spent in forums: 10 h 38 m 25 sec
Reputation Power: 11
|
|
|
A simple method
One simple way, would be to average the values around your current point. (such as, prev 4 values+cur value+next 4 values) You could increase the number of samples to smooth it more if you have enough data elements.
This would probably work best if there's a lot of data to work with.
There's also Bezier algorithms that work with n points of data. That would work well to smooth more limited data.
You could even combine the two methods.
|