Re: [Discuss-gnuradio] help about making .dat file for file source

2013-01-29 Thread Nemanja Savic
Just calculate samples in whatever way you want and store them to files, using python, C, or any other language. Here is part of my code for making samples of complex sin wave in python: for i in range(n_samples): > sine[i] = math.sin(2*math.pi*i/n_samples) > cosine[i] = math.cos(2*math.pi

Re: [Discuss-gnuradio] help about making .dat file for file source

2013-01-29 Thread Tom Rondeau
On Tue, Jan 29, 2013 at 6:14 AM, Mohammed Ramadan wrote: > i want to make .dat file to use it in file source in GNU-Radio Program . > like attached one which i downloaded for making AM-Modulattion, i just want > to make simple .dat file for making guassian signal or any DSP signal. so > kindly any