- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我试图通过将各自的系数 (k_ij
) 附加到各自的单项式 (x**i*y**j
,其中 x
和 y
是符号变量)。我的目标是最小化计算时间,因为我的多项式非常大,并且在我的程序中使用计算时间的主要事情是生成这个符号多项式的行集(我需要调用这个步骤多次)。考虑到我的程序的其余部分相当冗长/复杂,我很惊讶地意识到这个步骤在程序中花费了多少时间。我永远不会猜到简单地创建单项式并附加系数以创建多项式需要多少时间。
我的多项式不一定要保存为多项式,它只需要是所有项的总和即可。通过这个,我的意思是我不需要这样的输出......
Out: Poly(7*x + 2*y, x, y, domain='ZZ')
...不过,我也不反对这种格式,只要它能最大限度地减少计算时间。我想要但不一定需要的只是一个看起来像这样的输出(在这种情况下,可以通过简单地说 z = 7*x + 2*y
if x
和 y
已经用符号定义了):
Out: 7*x + 2*y
因此,我有一个系数矩阵(可以很容易地重新排序以适应用于将其附加到多项式的方法),其中包含所需多项式的所有系数,并且我有我的符号变量。这是我第一次尝试的重新创建(计算时间最长):
import sympy
import time
# let's time it, see how long it takes
from time import clock as tc
# time it!
t0 = tc()
order = 33
order_x = order
order_y = order
deg_x = order - 1
deg_y = order - 1
nnn = order_x*order_y
# here is a random coefficient matrix
coefficient_matrix = numpy.random.rand(nnn)
# define symbolic variables
x = sympy.Symbol('x')
y = sympy.Symbol('y')
# now let's populate the surface polynomial
z = 0
for i2 in range(order_y):
for i3 in range(order_x):
z = z + coefficient_matrix[i3 + order_x*i2]*(x**(deg_x - i3))*(y**(deg_y - i2))
# note that this returns high order to low order terms
t1 = tc()
print(t1-t0)
那很慢(37 秒),大概是因为 for
循环的性质。然后我尝试使用 numpy.polynomial.polynomial.polyvander2d
生成伪范德蒙矩阵并将其乘以系数矩阵,但这在计算时间上几乎没有差异。我尝试的下一个方法(如下所示)能够大大缩短计算时间:
import sympy
import time
from time import clock as tc
import numpy
from numpy.polynomial.polynomial import polyval2d as P2
# time it!
t0 = tc()
order = 33
order_x = order
order_y = order
# here is a random coefficient matrix
coefficient_matrix = numpy.random.rand(order, order)
# define symbolic variables
x = sympy.Symbol('x')
y = sympy.Symbol('y')
# create polynomial
z = P2(x, y, coefficient_matrix)
# make the polynomial a logical sequence of monomials
z = sympy.expand(z)
t1 = tc()
print(z)
print(t1-t0)
这个方法用了 8.5 秒(这让我很吃惊,我认为它会短得多),但是如果没有 z = sympy.expand(z)
行,它只用了大约 3 秒。我有那行的原因是稍后我需要修改函数并提取新系数,所以我希望它以扩展形式供以后使用(以便它以上面列出的格式出现;如果我没有包括这个行,它以某种分解格式出现)。
有没有办法让 Python 更快地将项与系数匹配并将它们作为单项式序列返回?
最佳答案
Constructing a sy.Poly
会花费更少的时间:
using_loop : 43.56
using_P2 : 12.64
using_poly : 0.03
from timeit import default_timer as tc
import numpy as np
import sympy as sy
from numpy.polynomial.polynomial import polyval2d as P2
def using_poly(coefficient_matrix, S=sy.S):
order = coefficient_matrix.shape[0]
x = sy.Symbol('x')
y = sy.Symbol('y')
dct = {i:S(val) for i, val in np.ndenumerate(coefficient_matrix)}
z = sy.Poly(dct, x, y)
return z
def using_loop(coefficient_matrix):
order = coefficient_matrix.shape[0]
coefficient_matrix = coefficient_matrix.T.ravel()[::-1]
order_x = order
order_y = order
deg_x = order - 1
deg_y = order - 1
x = sy.Symbol('x')
y = sy.Symbol('y')
z = 0
for i2 in range(order_y):
for i3 in range(order_x):
z = z + coefficient_matrix[i3 + order_x*i2]*(x**(deg_x - i3))*(y**(deg_y - i2))
return z
def using_P2(coefficient_matrix):
x = sy.Symbol('x')
y = sy.Symbol('y')
z = P2(x, y, coefficient_matrix)
# make the polynomial a logical sequence of monomials
z = sy.expand(z)
return z
order = 33
np.random.seed(2015)
coefficient_matrix = np.random.rand(order, order)
# coefficient_matrix = np.arange(1, order*order+1).reshape(order,order)
for func in (using_loop, using_P2, using_poly):
t0 = tc()
func(coefficient_matrix)
t1 = tc()
print('{:15s}: {:>5.2f}'.format(func.__name__, t1-t0))
这是一个小 coefficient_matrix 的输出示例:
In [277]: order = 3
In [278]: coefficient_matrix = np.arange(1, order*order+1).reshape(order,order)
In [279]: using_poly(coefficient_matrix)
Out[279]: Poly(9*x**2*y**2 + 8*x**2*y + 7*x**2 + 6*x*y**2 + 5*x*y + 4*x + 3*y**2 + 2*y + 1, x, y, domain='ZZ')
In [280]: using_P2(coefficient_matrix)
Out[280]: 9.0*x**2*y**2 + 8.0*x**2*y + 7.0*x**2 + 6.0*x*y**2 + 5.0*x*y + 4.0*x + 3.0*y**2 + 2.0*y + 1.0
In [281]: using_loop(coefficient_matrix)
Out[281]: 9*x**2*y**2 + 8*x**2*y + 7*x**2 + 6*x*y**2 + 5*x*y + 4*x + 3*y**2 + 2*y + 1
关于python - 将二维多项式系数附加到 Python 中的项的更快方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31081232/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!