├── LICENSE ├── README.md ├── 其它 ├── closematlabpool.m ├── startmatlabpool.m ├── test.m ├── testParallel.m ├── tsp_dist_matrix.txt └── yalmip_learning.m ├── 模型与算法集合 ├── CA-forest_fire_2D │ ├── forest_fire.m │ ├── forset_ca_spread.m │ └── forset_fire_cell.m ├── CA_NS │ ├── README.md │ ├── Readme.txt │ ├── cellular.m │ ├── create_plaza.m │ ├── move_forward.m │ ├── my_plot.m │ ├── new_cars.m │ ├── para_count.m │ ├── random_slow.m │ ├── show_plaza.m │ ├── switch_lane.m │ ├── test.m │ └── up.png ├── CA_forest_fire_3D │ ├── forest_fier_modle2.m │ └── forest_fire_modle1.m ├── ant_colony_algorithm │ ├── Chap9_citys_data.xlsx │ ├── asa_bus_problem.m │ └── asa_tsp.m ├── cluster │ ├── kmeans │ │ ├── keamn_use.m │ │ └── 确定k的方法.txt │ └── system_cluster │ │ ├── clusterdata_use_simple.m │ │ └── system_cluster_use_complex.m ├── forecast │ ├── Logistic │ │ ├── Ch3_logistic_ex1.xlsx │ │ └── Logistic.m │ ├── SVM │ │ ├── LIBSVM_USE.m │ │ ├── SVM_L.m │ │ ├── SVM_NL.m │ │ └── heart_scale │ └── gray_forecast │ │ ├── gm_corr.m │ │ ├── gm_corr_fire.m │ │ ├── greym_1_1.m │ │ └── raw_data.txt ├── genetic │ ├── beatxbx_tools │ │ ├── beatbx_use.m │ │ ├── beatvx_use_self_condiftion.m │ │ ├── fit.m │ │ └── fitness.m │ ├── ga_algorithm_theory │ │ ├── GA501.m │ │ ├── IfCroIfMut.m │ │ ├── _desktop.ini │ │ ├── crossover.m │ │ ├── fitnessfun.m │ │ ├── mutation.m │ │ ├── selection.m │ │ ├── targetfun.m │ │ └── transform2to10.m │ ├── gatools │ │ ├── fitness.m │ │ └── ga_use.m │ └── readme.txt ├── neural_network │ ├── bp_theroy.m │ ├── neural_network_miv.m │ ├── neural_network_tools_use.m │ ├── rbf_network_tools_use.m │ └── rbf_theory.m ├── others │ ├── CiclingCompetition.m │ ├── Dijkstra.m │ ├── Floyd.m │ ├── FloydSingle.m │ ├── dist2.txt │ ├── table1.txt │ ├── table2.txt │ └── test.m ├── queuing_theory │ ├── MMSkteam.m │ ├── M_M_1.m │ └── test.m ├── simulated_annealing │ ├── binary_code_new_solution.m │ ├── natural_code_new_solution.m │ ├── readme.txt │ ├── sa_01knapsack.m │ ├── sa_bus_problem.m │ └── sa_tsp.m └── weights │ ├── AHP.m │ ├── PCA.m │ └── shang.m ├── 红皮书学习 ├── ant_colony_algorithm │ ├── Chap9_citys_data.xlsx │ ├── asa_bus_problem.m │ └── asa_tsp.m ├── genetic │ ├── beatxbx_tools │ │ ├── beatbx_use.m │ │ └── fitness.m │ ├── ga_algorithm_theory │ │ ├── GA501.m │ │ ├── IfCroIfMut.m │ │ ├── _desktop.ini │ │ ├── crossover.m │ │ ├── fitnessfun.m │ │ ├── mutation.m │ │ ├── selection.m │ │ ├── targetfun.m │ │ └── transform2to10.m │ ├── gatools │ │ ├── fitness.m │ │ └── ga_use.m │ └── readme.txt ├── neural_network │ ├── bp_theroy.m │ ├── neural_network_miv.m │ ├── neural_network_tools_use.m │ ├── rbf_network_tools_use.m │ └── rbf_theory.m └── simulated_annealing │ ├── binary_code_new_solution.m │ ├── natural_code_new_solution.m │ ├── readme.txt │ ├── sa_01knapsack.m │ ├── sa_bus_problem.m │ └── sa_tsp.m └── 蓝皮书学习 ├── CiclingCompetition.m ├── Dijkstra.m ├── Floyd.m ├── FloydSingle.m ├── dist2.txt ├── table1.txt ├── table2.txt └── test.m /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/README.md -------------------------------------------------------------------------------- /其它/closematlabpool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/其它/closematlabpool.m -------------------------------------------------------------------------------- /其它/startmatlabpool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/其它/startmatlabpool.m -------------------------------------------------------------------------------- /其它/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/其它/test.m -------------------------------------------------------------------------------- /其它/testParallel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/其它/testParallel.m -------------------------------------------------------------------------------- /其它/tsp_dist_matrix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/其它/tsp_dist_matrix.txt -------------------------------------------------------------------------------- /其它/yalmip_learning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/其它/yalmip_learning.m -------------------------------------------------------------------------------- /模型与算法集合/CA-forest_fire_2D/forest_fire.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA-forest_fire_2D/forest_fire.m -------------------------------------------------------------------------------- /模型与算法集合/CA-forest_fire_2D/forset_ca_spread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA-forest_fire_2D/forset_ca_spread.m -------------------------------------------------------------------------------- /模型与算法集合/CA-forest_fire_2D/forset_fire_cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA-forest_fire_2D/forset_fire_cell.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/README.md: -------------------------------------------------------------------------------- 1 | # NaSch 2 | 元胞自动机matlab实现,持续不定期更新 3 | -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/Readme.txt -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/cellular.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/cellular.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/create_plaza.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/create_plaza.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/move_forward.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/move_forward.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/my_plot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/my_plot.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/new_cars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/new_cars.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/para_count.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/para_count.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/random_slow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/random_slow.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/show_plaza.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/show_plaza.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/switch_lane.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/switch_lane.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/test.m -------------------------------------------------------------------------------- /模型与算法集合/CA_NS/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_NS/up.png -------------------------------------------------------------------------------- /模型与算法集合/CA_forest_fire_3D/forest_fier_modle2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_forest_fire_3D/forest_fier_modle2.m -------------------------------------------------------------------------------- /模型与算法集合/CA_forest_fire_3D/forest_fire_modle1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/CA_forest_fire_3D/forest_fire_modle1.m -------------------------------------------------------------------------------- /模型与算法集合/ant_colony_algorithm/Chap9_citys_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/ant_colony_algorithm/Chap9_citys_data.xlsx -------------------------------------------------------------------------------- /模型与算法集合/ant_colony_algorithm/asa_bus_problem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/ant_colony_algorithm/asa_bus_problem.m -------------------------------------------------------------------------------- /模型与算法集合/ant_colony_algorithm/asa_tsp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/ant_colony_algorithm/asa_tsp.m -------------------------------------------------------------------------------- /模型与算法集合/cluster/kmeans/keamn_use.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/cluster/kmeans/keamn_use.m -------------------------------------------------------------------------------- /模型与算法集合/cluster/kmeans/确定k的方法.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/cluster/kmeans/确定k的方法.txt -------------------------------------------------------------------------------- /模型与算法集合/cluster/system_cluster/clusterdata_use_simple.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/cluster/system_cluster/clusterdata_use_simple.m -------------------------------------------------------------------------------- /模型与算法集合/cluster/system_cluster/system_cluster_use_complex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/cluster/system_cluster/system_cluster_use_complex.m -------------------------------------------------------------------------------- /模型与算法集合/forecast/Logistic/Ch3_logistic_ex1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/Logistic/Ch3_logistic_ex1.xlsx -------------------------------------------------------------------------------- /模型与算法集合/forecast/Logistic/Logistic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/Logistic/Logistic.m -------------------------------------------------------------------------------- /模型与算法集合/forecast/SVM/LIBSVM_USE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/SVM/LIBSVM_USE.m -------------------------------------------------------------------------------- /模型与算法集合/forecast/SVM/SVM_L.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/SVM/SVM_L.m -------------------------------------------------------------------------------- /模型与算法集合/forecast/SVM/SVM_NL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/SVM/SVM_NL.m -------------------------------------------------------------------------------- /模型与算法集合/forecast/SVM/heart_scale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/SVM/heart_scale -------------------------------------------------------------------------------- /模型与算法集合/forecast/gray_forecast/gm_corr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/gray_forecast/gm_corr.m -------------------------------------------------------------------------------- /模型与算法集合/forecast/gray_forecast/gm_corr_fire.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/gray_forecast/gm_corr_fire.m -------------------------------------------------------------------------------- /模型与算法集合/forecast/gray_forecast/greym_1_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/gray_forecast/greym_1_1.m -------------------------------------------------------------------------------- /模型与算法集合/forecast/gray_forecast/raw_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/forecast/gray_forecast/raw_data.txt -------------------------------------------------------------------------------- /模型与算法集合/genetic/beatxbx_tools/beatbx_use.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/beatxbx_tools/beatbx_use.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/beatxbx_tools/beatvx_use_self_condiftion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/beatxbx_tools/beatvx_use_self_condiftion.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/beatxbx_tools/fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/beatxbx_tools/fit.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/beatxbx_tools/fitness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/beatxbx_tools/fitness.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/ga_algorithm_theory/GA501.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/ga_algorithm_theory/GA501.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/ga_algorithm_theory/IfCroIfMut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/ga_algorithm_theory/IfCroIfMut.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/ga_algorithm_theory/_desktop.ini: -------------------------------------------------------------------------------- 1 | 2011/4/13 -------------------------------------------------------------------------------- /模型与算法集合/genetic/ga_algorithm_theory/crossover.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/ga_algorithm_theory/crossover.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/ga_algorithm_theory/fitnessfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/ga_algorithm_theory/fitnessfun.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/ga_algorithm_theory/mutation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/ga_algorithm_theory/mutation.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/ga_algorithm_theory/selection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/ga_algorithm_theory/selection.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/ga_algorithm_theory/targetfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/ga_algorithm_theory/targetfun.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/ga_algorithm_theory/transform2to10.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/ga_algorithm_theory/transform2to10.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/gatools/fitness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/gatools/fitness.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/gatools/ga_use.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/gatools/ga_use.m -------------------------------------------------------------------------------- /模型与算法集合/genetic/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/genetic/readme.txt -------------------------------------------------------------------------------- /模型与算法集合/neural_network/bp_theroy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/neural_network/bp_theroy.m -------------------------------------------------------------------------------- /模型与算法集合/neural_network/neural_network_miv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/neural_network/neural_network_miv.m -------------------------------------------------------------------------------- /模型与算法集合/neural_network/neural_network_tools_use.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/neural_network/neural_network_tools_use.m -------------------------------------------------------------------------------- /模型与算法集合/neural_network/rbf_network_tools_use.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/neural_network/rbf_network_tools_use.m -------------------------------------------------------------------------------- /模型与算法集合/neural_network/rbf_theory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/neural_network/rbf_theory.m -------------------------------------------------------------------------------- /模型与算法集合/others/CiclingCompetition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/others/CiclingCompetition.m -------------------------------------------------------------------------------- /模型与算法集合/others/Dijkstra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/others/Dijkstra.m -------------------------------------------------------------------------------- /模型与算法集合/others/Floyd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/others/Floyd.m -------------------------------------------------------------------------------- /模型与算法集合/others/FloydSingle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/others/FloydSingle.m -------------------------------------------------------------------------------- /模型与算法集合/others/dist2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/others/dist2.txt -------------------------------------------------------------------------------- /模型与算法集合/others/table1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/others/table1.txt -------------------------------------------------------------------------------- /模型与算法集合/others/table2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/others/table2.txt -------------------------------------------------------------------------------- /模型与算法集合/others/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/others/test.m -------------------------------------------------------------------------------- /模型与算法集合/queuing_theory/MMSkteam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/queuing_theory/MMSkteam.m -------------------------------------------------------------------------------- /模型与算法集合/queuing_theory/M_M_1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/queuing_theory/M_M_1.m -------------------------------------------------------------------------------- /模型与算法集合/queuing_theory/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/queuing_theory/test.m -------------------------------------------------------------------------------- /模型与算法集合/simulated_annealing/binary_code_new_solution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/simulated_annealing/binary_code_new_solution.m -------------------------------------------------------------------------------- /模型与算法集合/simulated_annealing/natural_code_new_solution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/simulated_annealing/natural_code_new_solution.m -------------------------------------------------------------------------------- /模型与算法集合/simulated_annealing/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/simulated_annealing/readme.txt -------------------------------------------------------------------------------- /模型与算法集合/simulated_annealing/sa_01knapsack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/simulated_annealing/sa_01knapsack.m -------------------------------------------------------------------------------- /模型与算法集合/simulated_annealing/sa_bus_problem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/simulated_annealing/sa_bus_problem.m -------------------------------------------------------------------------------- /模型与算法集合/simulated_annealing/sa_tsp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/simulated_annealing/sa_tsp.m -------------------------------------------------------------------------------- /模型与算法集合/weights/AHP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/weights/AHP.m -------------------------------------------------------------------------------- /模型与算法集合/weights/PCA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/weights/PCA.m -------------------------------------------------------------------------------- /模型与算法集合/weights/shang.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/模型与算法集合/weights/shang.m -------------------------------------------------------------------------------- /红皮书学习/ant_colony_algorithm/Chap9_citys_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/ant_colony_algorithm/Chap9_citys_data.xlsx -------------------------------------------------------------------------------- /红皮书学习/ant_colony_algorithm/asa_bus_problem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/ant_colony_algorithm/asa_bus_problem.m -------------------------------------------------------------------------------- /红皮书学习/ant_colony_algorithm/asa_tsp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/ant_colony_algorithm/asa_tsp.m -------------------------------------------------------------------------------- /红皮书学习/genetic/beatxbx_tools/beatbx_use.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/beatxbx_tools/beatbx_use.m -------------------------------------------------------------------------------- /红皮书学习/genetic/beatxbx_tools/fitness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/beatxbx_tools/fitness.m -------------------------------------------------------------------------------- /红皮书学习/genetic/ga_algorithm_theory/GA501.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/ga_algorithm_theory/GA501.m -------------------------------------------------------------------------------- /红皮书学习/genetic/ga_algorithm_theory/IfCroIfMut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/ga_algorithm_theory/IfCroIfMut.m -------------------------------------------------------------------------------- /红皮书学习/genetic/ga_algorithm_theory/_desktop.ini: -------------------------------------------------------------------------------- 1 | 2011/4/13 -------------------------------------------------------------------------------- /红皮书学习/genetic/ga_algorithm_theory/crossover.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/ga_algorithm_theory/crossover.m -------------------------------------------------------------------------------- /红皮书学习/genetic/ga_algorithm_theory/fitnessfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/ga_algorithm_theory/fitnessfun.m -------------------------------------------------------------------------------- /红皮书学习/genetic/ga_algorithm_theory/mutation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/ga_algorithm_theory/mutation.m -------------------------------------------------------------------------------- /红皮书学习/genetic/ga_algorithm_theory/selection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/ga_algorithm_theory/selection.m -------------------------------------------------------------------------------- /红皮书学习/genetic/ga_algorithm_theory/targetfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/ga_algorithm_theory/targetfun.m -------------------------------------------------------------------------------- /红皮书学习/genetic/ga_algorithm_theory/transform2to10.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/ga_algorithm_theory/transform2to10.m -------------------------------------------------------------------------------- /红皮书学习/genetic/gatools/fitness.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/gatools/fitness.m -------------------------------------------------------------------------------- /红皮书学习/genetic/gatools/ga_use.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/gatools/ga_use.m -------------------------------------------------------------------------------- /红皮书学习/genetic/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/genetic/readme.txt -------------------------------------------------------------------------------- /红皮书学习/neural_network/bp_theroy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/neural_network/bp_theroy.m -------------------------------------------------------------------------------- /红皮书学习/neural_network/neural_network_miv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/neural_network/neural_network_miv.m -------------------------------------------------------------------------------- /红皮书学习/neural_network/neural_network_tools_use.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/neural_network/neural_network_tools_use.m -------------------------------------------------------------------------------- /红皮书学习/neural_network/rbf_network_tools_use.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/neural_network/rbf_network_tools_use.m -------------------------------------------------------------------------------- /红皮书学习/neural_network/rbf_theory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/neural_network/rbf_theory.m -------------------------------------------------------------------------------- /红皮书学习/simulated_annealing/binary_code_new_solution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/simulated_annealing/binary_code_new_solution.m -------------------------------------------------------------------------------- /红皮书学习/simulated_annealing/natural_code_new_solution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/simulated_annealing/natural_code_new_solution.m -------------------------------------------------------------------------------- /红皮书学习/simulated_annealing/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/simulated_annealing/readme.txt -------------------------------------------------------------------------------- /红皮书学习/simulated_annealing/sa_01knapsack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/simulated_annealing/sa_01knapsack.m -------------------------------------------------------------------------------- /红皮书学习/simulated_annealing/sa_bus_problem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/simulated_annealing/sa_bus_problem.m -------------------------------------------------------------------------------- /红皮书学习/simulated_annealing/sa_tsp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/红皮书学习/simulated_annealing/sa_tsp.m -------------------------------------------------------------------------------- /蓝皮书学习/CiclingCompetition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/蓝皮书学习/CiclingCompetition.m -------------------------------------------------------------------------------- /蓝皮书学习/Dijkstra.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/蓝皮书学习/Dijkstra.m -------------------------------------------------------------------------------- /蓝皮书学习/Floyd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/蓝皮书学习/Floyd.m -------------------------------------------------------------------------------- /蓝皮书学习/FloydSingle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/蓝皮书学习/FloydSingle.m -------------------------------------------------------------------------------- /蓝皮书学习/dist2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/蓝皮书学习/dist2.txt -------------------------------------------------------------------------------- /蓝皮书学习/table1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/蓝皮书学习/table1.txt -------------------------------------------------------------------------------- /蓝皮书学习/table2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/蓝皮书学习/table2.txt -------------------------------------------------------------------------------- /蓝皮书学习/test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ravenxrz/Mathematical-Modeling/HEAD/蓝皮书学习/test.m --------------------------------------------------------------------------------