Averaging out data


Recommended Posts

The easiest way is to use the smooth function. So if your Y expression is "pressure", make it "smooth(pressure,5)" where 5 is the number of points you'd like to average over. Higher values make smoother plots, but less detail. Its a running average, so each point is the average of the last x points and so there is overlap. If you don't want overlap, use boxcar() instead.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.