function [F] = GetFtAsComponents( realOut, imagOut, f, h, w, intFlg ) % Returns the Fourier Transform of the 2-dim array represented in f, % .. and stores the FT components in comma-delimited text files. % h, w are the height, width (as complex values) of the source array. % intFlg: 0 => output values are floats; 1 => output values are integers % % 18 Dec 2008 - D.Bozarth, SSU Engineering Science % 13 Jan 2009 - Add calling argument. % fx = f'; inv_fx = fft(fx); F = inv_fx'; polarFlg = 0; FileSignalAsComponents( realOut, imagOut, F, h, w, intFlg, polarFlg ); % % end script