function [f] = FileIftFromComponents( realIn, imagIn, realOut, imagOut, w, intFlg ) % Stores in the specified output text files % .. the Inverse Fourier Transform of the 2-dim array represented in the % .. specified input text files. All files are comma-delimited. % w is the common width (horizontal dimension) of the source arrays. % intFlg: 0 => input values are floats; 1 => input values are integers % % 31 Dec 2008 - D.Bozarth, SSU Engineering Science % 13 Jan 2009 - Add calling argument. % f = GetIftFromComponents( realIn, imagIn, w, intFlg ); h = size( f, 1 ); polarFlg = 0; FileSignalAsComponents( realOut, imagOut, f, h, w, intFlg, polarFlg ); % % end script