So I tried to study about TOPSIS
.
Here is the reference. In the first normalizing step, there is code like this:
divisors[j] = np.sqrt(column @ column)
I tried to look the meaning of @
, but I still couldn't find it. Based on the formula, at the divisor, we need to square the xij
first, then sum, then do the square root. At code, when do the column values be summed together?