view dsp/dftbins.m @ 53:3ba80c9914ff

Minor doc fix, added .class to .hgignore
author samer
date Mon, 02 Feb 2015 10:47:55 +0000
parents c3b0cd708782
children
line wrap: on
line source
% dftbins - Returns number of bins to retain for real DFT of length N
%
% dftbins :: natural -> natural.
function M=dftbins(N), M=1+floor(N/2);