We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Example using the python bindings in a notebook:
import kernels import numpy as np from matplotlib import pyplot as plt %matplotlib inline ct = kernels.CoulaloglouTavlaridesImp(0.00487, 0.008, 0.0, 0.047) rho_d = 5 epsilon = 3 X = np.linspace(0,10) Y = [ct.S(x, rho_d, epsilon) for x in X] plt.plot(X,Y)
There was an error while loading. Please reload this page.