Coding challenge: Write a program that calculates 1D Gaussian kernel values given a window size and sigma. Usage: gauss [window] [sigma] The C-code formula for a 1D Gaussian is value=pow(M_E,(0.0-(i*i))/(2.0*sigma*sigma)) where 'i' is the location in the window.