- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找一个函数来计算具有多个变量的多项式的值。对于二维多项式,我使用 numpy.polyval
,我将系数值作为列表和 x 值。
我想知道 x、y、z 空间是否有类似的函数,所以我的输入是系数值和 x、y 的值。
最佳答案
你在找这个吗?
Evaluate a 2-D polynomial at points (x, y).
This function returns the value
p(x,y) = \sum_{i,j} c_{i,j} * x^i * y^j
The parameters x and y are converted to arrays only if they are tuples or a lists, otherwise they are treated as a scalars and they must have the same shape after conversion. In either case, either x and y or their elements must support multiplication and addition both with themselves and with the elements of c.
If c has fewer than two dimensions, ones are implicitly appended to its shape to make it 2-D. The shape of the result will be c.shape[2:] + x.shape.
Parameters:
x, y : array_like, compatible objects
The two dimensional series is evaluated at the points (x, y), where x and y must have the same shape. If x or y is a list or tuple, it is first converted to an ndarray, otherwise it is left unchanged and, if it isn’t an ndarray, it is treated as a scalar.
c : array_like
Array of coefficients ordered so that the coefficient of the term of multi-degree i,j is contained in c[i,j]. If c has dimension greater than two the remaining indices enumerate multiple sets of coefficients.
Returns:
values : ndarray, compatible object The values of the two dimensional polynomial at points formed with pairs of corresponding values from x and y.
关于python - 多变量的 Polyval,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55365055/
我正在寻找一个函数来计算具有多个变量的多项式的值。对于二维多项式,我使用 numpy.polyval,我将系数值作为列表和 x 值。 我想知道 x、y、z 空间是否有类似的函数,所以我的输入是系数值和
我有一些数据,我使用 numpy.polynomial.polynomial.polyfit 拟合了二阶多项式 data_fit = poly.polyfit(length_spline_a, tem
我想知道 np.polyval() 是否有一个方便的反函数,我在其中给出 y 值并求解 x? 我知道我可以这样做的一种方法是: import numpy as np # Set up the ques
我对 Python 知之甚少,我正在尝试使用它来进行一些简单的多项式插值,但对于其中一个内置函数,我有一些不了解的地方。 我正在尝试使用 polyval(p,x) 计算 x 处的多项式 p。 我做了一
这个问题在这里已经有了答案: MATLAB curve fitting - least squares method - wrong "fit" using high degrees (1 个回答)
假设一个 n 维观察数组被 reshape 为一个二维数组,每行是一个观察集。使用这种 reshape 方法,np.polyfit 可以计算整个 ndarray(矢量化)的二阶拟合系数: fit =
我正在尝试编写一个函数,您可以在其中为它提供一个 mxn 数组,其目标是遍历该数组并为每个值执行 numpy.polyval。数组将包含一些 nan 值,因此我希望函数以与原始数组相同的顺序返回 na
更新脚本中有错误。 我正在研究 Julia 和 Mandelbrot 集以及牛顿分形的可视化 - 为此,我需要计算复平面中的很多值。我可以使用我想要的任何类型的数学函数,但对于多项式来说已经足够了。
我在 Matlab 中有该代码,需要将其引入 Python。 x_cord = [58.2986 39.5842 23.0044 10.9427 3.0465] y_cord = [0.9600 0.
迫切需要一个与 Matlab 中存在的 polyval 和 polyfit 函数等效的 Javascript。本质上,matlab 中的那些函数根据指定的多项式基于两个大小相等的数组进行曲线拟合。我需
我是一名优秀的程序员,十分优秀!