Source code for UQpy.utilities.kernels.baseclass.EuclideanKernel

from abc import ABC

from UQpy.utilities.kernels.baseclass.Kernel import Kernel


[docs]class EuclideanKernel(Kernel, ABC): """This is a blueprint for Euclidean kernels implemented in the :py:mod:`kernels` module ."""