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 1b772a0 commit 2a173bcCopy full SHA for 2a173bc
1 file changed
src/marcos.jl
@@ -87,19 +87,14 @@ function marcos(
87
normalization::G = Normalizations.marcosnormalization
88
)::MarcosResult where {F<:Function, G<:Function}
89
90
- row, col = size(decisionMat)
+ row, _ = size(decisionMat)
91
92
w = unitize(weights)
93
94
zerotype = eltype(decisionMat[1, :])
95
- AAI = zeros(zerotype, col)
96
- AI = zeros(zerotype, col)
97
-
98
- temp = [decisionMat; AI'; AAI']
99
100
normalizedDecisionMat = normalization(decisionMat, fns)
101
102
103
S = zeros(zerotype, row + 2)
104
105
for i = 1:row+2
0 commit comments