MCPcopy Create free account
hub / github.com/dfm/george / gradient

Method gradient

src/george/kernel_interface.cpp:21–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19 size_t size () const { return kernel_->size(); };
20 double value (const double* x1, const double* x2) const { return kernel_->value(x1, x2); };
21 void gradient (const double* x1, const double* x2, const unsigned* which, double* grad) const {
22 return kernel_->gradient(x1, x2, which, grad);
23 };
24 void x1_gradient (const double* x1, const double* x2, double* grad) const {
25 return kernel_->x1_gradient(x1, x2, grad);
26 };

Callers 1

PYBIND11_MODULEFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected