Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 663df5e commit 20ec7fcCopy full SHA for 20ec7fc
1 file changed
src/moosra.jl
@@ -83,11 +83,11 @@ function moosra(
83
end
84
85
row, col = size(decisionMat)
86
- dmat = Matrix(decisionMat)
87
- zerotype = eltype(dmat[1, :])
+
+ zerotype = eltype(decisionMat[1, :])
88
89
# normalizedDecisionMat = dmat ./ sqrt(sum(dmat .* dmat))
90
- normalizedDecisionMat = normalization(dmat, fns)
+ normalizedDecisionMat = normalization(decisionMat, fns)
91
92
w = unitize(weights)
93
0 commit comments