MCPcopy Create free account
hub / github.com/CoolProp/CoolProp / derivative

Method derivative

src/PolyMath.cpp:178–180  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

176}
177
178double Polynomial2D::derivative(const Eigen::MatrixXd& coefficients, const double& x_in, const double& y_in, const int& axis = -1) {
179 return this->evaluate(this->deriveCoeffs(coefficients, axis, 1), x_in, y_in);
180}
181
182double Polynomial2D::integral(const Eigen::MatrixXd& coefficients, const double& x_in, const double& y_in, const int& axis = -1) {
183 return this->evaluate(this->integrateCoeffs(coefficients, axis, 1), x_in, y_in);

Callers 3

derivMethod · 0.80
PolyMath.cppFile · 0.80
drhodTatPxMethod · 0.80

Calls 3

evaluateMethod · 0.95
deriveCoeffsMethod · 0.95
formatFunction · 0.70

Tested by

no test coverage detected