head 1.1; branch 1.1.1; access ; symbols arelease:1.1.1.1 avendor:1.1.1; locks ; strict; comment @// @; expand @b@; 1.1 date 2007.08.09.11.10.47; author arish.alreja; state Exp; branches 1.1.1.1; next ; commitid 48e746baf6304567; 1.1.1.1 date 2007.08.09.11.10.47; author arish.alreja; state Exp; branches ; next ; commitid 48e746baf6304567; desc @@ 1.1 log @Initial revision @ text @% The purpose is this function is to take the staggered 8x8 memory map for the fft % and give a vector (length = 64), which is the bit reversed FFT output. function [fftvec] = givevec(reconmap) fftvec = reconmap(1,:); for (a = 2:8) fftvec = [fftvec reconmap(a,a:8) reconmap(a,1:a-1)]; end@ 1.1.1.1 log @Initial Commit of AGU.V @ text @@