Top "Smoothing" questions

Smoothing related to statistical programing solutions in which a signal is filtered to create an approximating function that attempts to capture important patterns in the data, while leaving out noise, or for visual clarity to see general trends.

Smooth MultiPlayer movement

i am developing a multiplayer roleplaying game, (No, its not a mmorpg. ;) My current setup is like this. Client tells …

networking multiplayer smoothing
How can I smooth elements of a two-dimensional array with differing gaussian functions in python?

How could I smooth the x[1,3] and x[3,2] elements of the array, x = np.array([[0,0,0,0,0],[0,0,0,1,0],[0,0,0,0,0],[0,0,1,0,0],[0,0,0,0,0]]) with two two-dimensional gaussian functions …

python arrays smoothing
How to resize a bitmap image in C# without blending or filtering?

I have a gray scale image that I would like to enlarge so that I can better see the individual …

c# bitmap resize interpolation smoothing
scipy BSpline fitting in python

This is my first time using BSpline, and I want to fit a curve to my data points. I've tried …

python scipy smoothing curves bspline
Simple curve smoothing in matplotlib --- equivalent to gnuplot's "smooth bezier"?

I have a set of points I want to plot in matplotlib, say: x = [1,4,6,7,8] y = [0.2, 0.4, 0.5, 0.6, 0.6] In gnuplot, I used to …

python matplotlib smoothing
Gradient in noisy data, python

I have an energy spectrum from a cosmic ray detector. The spectrum follows an exponential curve but it will have …

python gradient smoothing
How to get confidence interval for smooth.spline?

I have used smooth.spline to estimate a cubic spline for my data. But when I calculate the 90% point-wise confidence …

r smoothing confidence-interval splines mgcv
Math: Ease In, ease Out a displacement using Hermite curve with time constraint

I'm trying to write a method that interpolates from 0 to x (position of an object in one dimension) over time …

math interpolation spline smoothing
B Spline confusion

I realise that there are posts on the topic of B-Splines on this board but those have actually made me …

r regression spline smoothing
How to visualize a nonlinear relationship in a scatter plot

I want to visually explore the relationship between two variables. The functional form of the relationship is not visible in …

python matplotlib curve-fitting statsmodels smoothing