Go to the documentation of this file.00001 #include <itpp/itcomm.h>
00002
00003 using namespace itpp;
00004
00005 int main()
00006 {
00007
00008
00009 TDL_Channel my_channel;
00010
00011
00012 double norm_dopp = 0.1;
00013 my_channel.set_norm_doppler(norm_dopp);
00014
00015
00016
00017 int nrof_samples = 10000;
00018 cmat ch_coeffs;
00019 my_channel.generate(nrof_samples, ch_coeffs);
00020
00021
00022 it_file ff("rayleigh_test.it");
00023
00024
00025 ff << Name("ch_coeffs") << ch_coeffs;
00026
00027
00028 ff.close();
00029
00030
00031 return 0;
00032 }