├── DEA ├── DEA.md └── DEA.py ├── FAHP ├── FAHP.md └── FAHP.py ├── FCEM ├── FCEM.md └── FCEM.py ├── GRA ├── GRA.csv ├── GRA.md ├── GRA.py ├── HeatMap.png └── wine.csv ├── PCA ├── PCA.md ├── PCA.py └── wine.csv ├── README.md ├── RSR ├── RSR.md ├── RSR.py └── RSR.xlsx ├── TOPSIS ├── TOPSIS.md └── TOPSIS.py └── requirements.txt /DEA/DEA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/DEA/DEA.md -------------------------------------------------------------------------------- /DEA/DEA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/DEA/DEA.py -------------------------------------------------------------------------------- /FAHP/FAHP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/FAHP/FAHP.md -------------------------------------------------------------------------------- /FAHP/FAHP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/FAHP/FAHP.py -------------------------------------------------------------------------------- /FCEM/FCEM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/FCEM/FCEM.md -------------------------------------------------------------------------------- /FCEM/FCEM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/FCEM/FCEM.py -------------------------------------------------------------------------------- /GRA/GRA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/GRA/GRA.csv -------------------------------------------------------------------------------- /GRA/GRA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/GRA/GRA.md -------------------------------------------------------------------------------- /GRA/GRA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/GRA/GRA.py -------------------------------------------------------------------------------- /GRA/HeatMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/GRA/HeatMap.png -------------------------------------------------------------------------------- /GRA/wine.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/GRA/wine.csv -------------------------------------------------------------------------------- /PCA/PCA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/PCA/PCA.md -------------------------------------------------------------------------------- /PCA/PCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/PCA/PCA.py -------------------------------------------------------------------------------- /PCA/wine.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/PCA/wine.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MathematicalModelingAlgorithm 2 | 3 | :bar_chart: 数学建模算法及 Python 代码实现。​ -------------------------------------------------------------------------------- /RSR/RSR.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/RSR/RSR.md -------------------------------------------------------------------------------- /RSR/RSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/RSR/RSR.py -------------------------------------------------------------------------------- /RSR/RSR.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/RSR/RSR.xlsx -------------------------------------------------------------------------------- /TOPSIS/TOPSIS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/TOPSIS/TOPSIS.md -------------------------------------------------------------------------------- /TOPSIS/TOPSIS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/TOPSIS/TOPSIS.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Giyn/MathematicalModelingAlgorithm/HEAD/requirements.txt --------------------------------------------------------------------------------