gausswin source code

I want to create gaussian window program in C/C++. I have checked at Matlab and they give gausswin function to create gaussian window. I have checked gausswin Matlab source code and convert that code to C/C++. The coefficients of a Gaussian window are computed from the following equation: where –(N – 1)/2 ≤ n ≤ (N – 1)/2 and α is inversely proportional

VirtualBox Install El Capitan

I am very interesting to install Mac OS in my desktop computer using VirtualBox. I have created steps how to install Mac OS in VirtualBox. But, you need existing Mac OS to create bootable Mac OS. I want to install Mac El Capitan (10.11) in my VirtualBox. I dont have fast internet connection. So, I

Matlab Data Precision Problem

I have created a simple computation using Matlab using command : >> (0.1450-0.002)/0.002 ans = 71.5000 Nothing wrong with the result. But, try to change data precision format and try to retype command above. we will get Matlab data precision problem from this simple computation. >> format long >> (0.1450-0.002)/0.002 ans = 71.499999999999986 We get

Mac10.9 install libxml

When I try to install libxml in my Mac10.9 using pip or easy_install, I get error like below : clang: error: unknown argument: '-mno-fused-madd' I have solved (clang: error: unknown argument: ‘-mno-fused-madd’) this method by type this text in our console : export CFLAGS=-Qunused-arguments export CPPFLAGS=-Qunused-arguments install libxml using command : sudo pip install lxml