MCPcopy Create free account
hub / github.com/EdwardRaff/JSAT / mutablePairwiseMultiply

Method mutablePairwiseMultiply

JSAT/src/jsat/linear/ShiftedVec.java:159–166  ·  view source on GitHub ↗
(Vec b)

Source from the content-addressed store, hash-verified

157 }
158
159 @Override
160 public void mutablePairwiseMultiply(Vec b)
161 {
162 //this would require multiple different shifts, so we have to fold it back into the base vector
163 base.mutableAdd(shift);
164 shift = 0;
165 base.mutablePairwiseMultiply(b);
166 }
167
168
169// No real performance to gain by re-implementing matrix mul ops

Callers

nothing calls this directly

Calls 1

mutableAddMethod · 0.45

Tested by

no test coverage detected