AHP-FCE评价模型python代码
时间: 2023-08-27 21:04:54 浏览: 178
以下是一个使用Python实现AHP-FCE评价模型的示例代码:
```python
import numpy as np
# AHP-FCE评价模型类
class AHPFCEModel:
def __init__(self, criteria, alternatives, criteria_weights, alternative_weights):
self.criteria = criteria # 评价指标
self.alternatives = alternatives # 可选方案
self.criteria_weights = criteria_weights # 评价指标权重
self.alternative_weights = alternative_weights # 可选方案权重
阅读全文