rbf.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:PyRBF 作者: srowe12 项目源码 文件源码
def fit(self, Y):
        """
        Generates the RBF coefficients to fit a set of given data values Y for centers self.centers
        :param Y: A set of dependent data values corresponding to self.centers
        :return: Void, sets the self.coefs values
        """
        kernel_matrix = self.EvaluateCentersKernel()
        self.coefs = sl.solve(kernel_matrix, Y, sym_pos=True)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号