view dsp/dftbins.m @ 38:9d24b616bb06

Added function algebra.
author samer
date Tue, 29 Jan 2013 15:59:01 +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);