statistics - how owa works step by step -
raster 1 {{0}, {1,1}} raster 2 {{1,1}, {0 , 0}}
Hello Can you please tell me how the two weighted worksheets work out step-by-step given the guided weighted average method? The difficult part about the OWA concept is the order of the input vector before the operation. Thanks
v = (1, 3, 2, 7) = = (0.5, 0.3, 0.1, 0.1)
Note that, in the form of vectors of all weights, the sum of components must be 1 remaining. Now, v: Components of v1 respectively:
v1 = (7, 3, 2, 1)
OK now, To see the principle:
OWA = sum v1_i * weights_i
Then in our example, we will get something like this:
< Code> OWA = 7 * 0.5 + 3 * 0.3 + 2 * 0.1 + 1 * 0.1
Comments
Post a Comment