I need to use a decision making algorithm as a part of a project. After long time research, I decide to use “ELECTRE Method”. Which get a matrix as input and calculate a weight for each row, based on its own method. The problem is that some values in matrix are null and caused inconsistency in calculation the weight of each row. Have anybody any idea about this or may someone know a good forum, where I can ask my question.
thanks in advance
The reference I have for ELECTRE (Multiple Attribute Decision Making: An Introduction) starts from a matrix where rows are possible choices and columns are attributes. It assumes that all attributes of all choices are known, and in fact are positive numbers. Why do you have null entries? Are they unknown values, or irrelevant values? If you want to try and extend ELECTRE you might start by considering what would make sense, for your example, if you only had one attribute. In fact, if you could create an order of preference for each attribute, taken in isolation, you could use this to replace the original values of that attribute, including the nulls, in the input matrix for ELECTRE.
My reference suggests that selection and scoring of the attributes is more important than choice of method, and that a simple additive weighted score may be good enough. If you are looking for something interesting, I refer you to http://homepage3.nifty.com/hiway/dm/franklin.htm.