view dsp/dftbins.m @ 42:ae596261e75f

Various fixes and development to audio handling
author samer
date Tue, 02 Dec 2014 14:51:13 +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);