• 大小: 42KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-03-15
  • 语言: Matlab
  • 标签: 选址问题  

资源简介

解决小区基站最优化选址问题的MATLAB程序,有一定的实用性。

资源截图

代码片段和文件信息

function [CP] = GetPlan()
clc
clear

Get_OptimalCombination(1);
Get_OptimalCombination(2);
Get_OptimalCombination(3);
Get_OptimalCombination(4);
Get_OptimalCombination(5);
   
end

%function [Plan_BuildStation Plan_BuildCost Plan_CoverCommunity Plan_CoverPeople] = Get_OptimalCombination(SelectNum)
function Result = Get_OptimalCombination(SelectNum)

    %基站建设费用
    Cost = [1.8 1.3 4.0 3.53.82.62.1];
    %基站对应的社区
    baseStation_Community = [12400; 23500; 478100; 56890; 891200; 710111215; 121314150];
    %社区对应的人口数
    Community_Person = [2 4 13 6 9 4 8 12 10 11 6 14 9 3 6];

    CB_num = combntns(1:7 SelectNum);%求排列组合数
    [Size_row Size_column] = size(CB_num);%求组合的行数和列数
    CB_num;%测试项
    %求出每种组合的价格
    for i 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2676  2015-07-31 17:15  GetPlan\GetPlan.m
     文件       48565  2015-11-13 16:53  GetPlan\基站选址问题.docx
     目录           0  2015-11-13 16:53  GetPlan\

评论

共有 条评论