Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试生成一个径向基函数,其中输入变量是在运行时定义的。SciPy.interpolate.Rbf 函数似乎为每个输入和输出变量请求离散列表,例如:rbf(x,y,z)。这限制了您事先定义固定变量。
我尝试将变量列表或数组传递给 Rbf 函数(例如 rbf(list(x,...)) 但没有成功。有没有其他人使用这个 Rbf 库找到解决这个问题的方法?我会如果可能的话,喜欢避免切换到不同的库或重写一个库。有没有办法在运行时生成离散变量以输入函数?
在查看 SciPy 函数的源代码后,我将对其进行子类化并覆盖init,其中各个输入无论如何都组合成一个数组。