function [X] = GetIftFromComponents( realIn, imagIn, w, intFlg ) % Returns the Inverse Fourier Transform of the 2-dim array represented in the % .. specified source text files, which should be comma- or tab-delimited. % w is the common width (horizontal dimension) of the source arrays. % intFlg: 0 => input values are floats; 1 => input values are integers % % 02 Jan 2009 - D.Bozarth, SSU Engineering Science % 13 Jan 2009 - Add calling argument. % polarFlg = 0; a = GetSignalFromComponents( realIn, imagIn, w, intFlg, polarFlg ); ax = a'; inv_ax = ifft(ax); X = inv_ax'; % % end script