├── .gitignore ├── Doc ├── Artigo_luciano_anderson_Alocacao_dinamica.pdf ├── WaterFilling-Anderson Daniel Soares.pdf └── Wheberth_LucianoOFDMA.pdf ├── DynamicAllocation_v1_aw.m ├── DynamicAllocation_v1_awm_mom.m ├── DynamicAllocation_v1_awm_mom_tese.m ├── DynamicAllocation_v1_awm_mv.m ├── README.md ├── Results ├── num3_allocation.png ├── num3_dynamicVSstatic_allocation.jpg ├── num3_water_filling_modificado_mom.jpg ├── num3_water_filling_modificado_mom_tese.jpg └── results_no_relatorio │ ├── cenario_alta_vazao.jpg │ ├── cenario_iot.jpg │ ├── new_cenario_alta_vazao.jpg │ ├── new_cenario_iot.jpg │ ├── new_static_vs_dynamic.jpg │ └── static_vs_dynamic.jpg ├── dynamicMaxVazao_num1.mat ├── dynamicMaxVazao_num3.mat ├── dynamic_mom_tese_num1.mat ├── dynamic_mom_tese_num3.mat ├── fcn_waterfilling.m ├── generate_results_1.m ├── generate_results_2.m ├── quantization.m ├── rb_h_media.m ├── staticAllocation_num1.mat └── staticAllocation_num3.mat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/.gitignore -------------------------------------------------------------------------------- /Doc/Artigo_luciano_anderson_Alocacao_dinamica.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Doc/Artigo_luciano_anderson_Alocacao_dinamica.pdf -------------------------------------------------------------------------------- /Doc/WaterFilling-Anderson Daniel Soares.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Doc/WaterFilling-Anderson Daniel Soares.pdf -------------------------------------------------------------------------------- /Doc/Wheberth_LucianoOFDMA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Doc/Wheberth_LucianoOFDMA.pdf -------------------------------------------------------------------------------- /DynamicAllocation_v1_aw.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/DynamicAllocation_v1_aw.m -------------------------------------------------------------------------------- /DynamicAllocation_v1_awm_mom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/DynamicAllocation_v1_awm_mom.m -------------------------------------------------------------------------------- /DynamicAllocation_v1_awm_mom_tese.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/DynamicAllocation_v1_awm_mom_tese.m -------------------------------------------------------------------------------- /DynamicAllocation_v1_awm_mv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/DynamicAllocation_v1_awm_mv.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/README.md -------------------------------------------------------------------------------- /Results/num3_allocation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/num3_allocation.png -------------------------------------------------------------------------------- /Results/num3_dynamicVSstatic_allocation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/num3_dynamicVSstatic_allocation.jpg -------------------------------------------------------------------------------- /Results/num3_water_filling_modificado_mom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/num3_water_filling_modificado_mom.jpg -------------------------------------------------------------------------------- /Results/num3_water_filling_modificado_mom_tese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/num3_water_filling_modificado_mom_tese.jpg -------------------------------------------------------------------------------- /Results/results_no_relatorio/cenario_alta_vazao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/results_no_relatorio/cenario_alta_vazao.jpg -------------------------------------------------------------------------------- /Results/results_no_relatorio/cenario_iot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/results_no_relatorio/cenario_iot.jpg -------------------------------------------------------------------------------- /Results/results_no_relatorio/new_cenario_alta_vazao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/results_no_relatorio/new_cenario_alta_vazao.jpg -------------------------------------------------------------------------------- /Results/results_no_relatorio/new_cenario_iot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/results_no_relatorio/new_cenario_iot.jpg -------------------------------------------------------------------------------- /Results/results_no_relatorio/new_static_vs_dynamic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/results_no_relatorio/new_static_vs_dynamic.jpg -------------------------------------------------------------------------------- /Results/results_no_relatorio/static_vs_dynamic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/Results/results_no_relatorio/static_vs_dynamic.jpg -------------------------------------------------------------------------------- /dynamicMaxVazao_num1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/dynamicMaxVazao_num1.mat -------------------------------------------------------------------------------- /dynamicMaxVazao_num3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/dynamicMaxVazao_num3.mat -------------------------------------------------------------------------------- /dynamic_mom_tese_num1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/dynamic_mom_tese_num1.mat -------------------------------------------------------------------------------- /dynamic_mom_tese_num3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/dynamic_mom_tese_num3.mat -------------------------------------------------------------------------------- /fcn_waterfilling.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/fcn_waterfilling.m -------------------------------------------------------------------------------- /generate_results_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/generate_results_1.m -------------------------------------------------------------------------------- /generate_results_2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/generate_results_2.m -------------------------------------------------------------------------------- /quantization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/quantization.m -------------------------------------------------------------------------------- /rb_h_media.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/rb_h_media.m -------------------------------------------------------------------------------- /staticAllocation_num1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/staticAllocation_num1.mat -------------------------------------------------------------------------------- /staticAllocation_num3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/4llex/Matlab-OFDMA-DynamicAllocation/HEAD/staticAllocation_num3.mat --------------------------------------------------------------------------------