MCPcopy
hub / github.com/scipy/scipy / append

Method append

scipy/optimize/_nonlin.py:719–728  ·  view source on GitHub ↗
(self, c, d)

Source from the content-addressed store, hash-verified

717 return LowRankMatrix._solve(v, np.conj(self.alpha), self.ds, self.cs)
718
719 def append(self, c, d):
720 if self.collapsed is not None:
721 self.collapsed += c[:,None] * d[None,:].conj()
722 return
723
724 self.cs.append(c)
725 self.ds.append(d)
726
727 if len(self.cs) > c.size:
728 self.collapse()
729
730 def __array__(self, dtype=None, copy=None):
731 if dtype is not None:

Callers 15

read_targetsFunction · 0.80
allocMethod · 0.80
walk_classFunction · 0.80
walk_moduleFunction · 0.80
get_issuesFunction · 0.80
generateFunction · 0.80
classify_libsFunction · 0.80
print_sectionFunction · 0.80
get_submodule_pathsFunction · 0.80
refguide_check.pyFile · 0.80
get_all_dictFunction · 0.80
check_restFunction · 0.80

Calls 2

collapseMethod · 0.95
conjMethod · 0.80

Tested by 15

generateFunction · 0.64
test_workersMethod · 0.64
my_callback_optimresultFunction · 0.64
my_callback_xFunction · 0.64
callbackMethod · 0.64
callback2Method · 0.64