- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我一直在研究一种在并行处理中反转拉普拉斯变换的算法(即同时积分 s 空间中的多个拉普拉斯函数),但我知道一个事实,即并行处理不是问题,因为实现此方法是为了解决问题。但问题仍然存在,本质上我的代码一遍又一遍地吐出这个:
Denominator too small. Exiting...
以及各种域错误。我指出了问题所在。基本上是这样的:
for u in np.linspace(0.000001, 100, 1000000):
当
u
传递给我想要集成的任何函数时,
变为全零。不确定是否是集成功能:
x_1[num] = x * (-1) ** k * quad(f_p(num), -math.pi / 2, math.pi / 2, args=(u,))[0]
或拉普拉斯函数f_p
本身,但我已经尝试了一切,我不能浪费更多的时间旋转我的轮子。如果我能得到任何帮助,我将不胜感激。以下是运行第一次拉普拉斯反演所需的代码:
import numpy as np
from scipy.integrate import quad
import math
import multiprocessing as mp
gamma = 10
num = 1
k = 1
n = 0
epsilon = 10 ** -16
max_err = 10 ** -10
max_count = 1000000
x_iter = np.arange(1, 7)
x_1 = np.arange(1, 7)
x_2 = np.arange(1, 7)
x_3 = np.arange(1, 7)
denom = np.arange(1, 7)
AX = np.arange(1, 7)
a = gamma
def f_p1(omega, u):
b = (omega + k * math.pi) / u
f1 = a * (1 / (a ** 2 + (b + 1) ** 2) + 1 / (a ** 2 + (b - 1) ** 2))
return f1 * math.cos(omega)
def f_p(num):
if num == 1:
return f_p1
def f_0(u, num):
x = 2 * math.e ** (gamma * u) / (math.pi * u)
return x * quad(f_p(num), 0, math.pi / 2, args=(u,))[0]
def f_u(u, num):
k = 1
x = 2 * math.e ** (gamma * u) / (math.pi * u)
x_1[num] = x * (-1) ** k * quad(f_p(num), -math.pi / 2, math.pi / 2, args=(u,))[0]
AX[num] = f_0(u, num)
for j in range(max_count):
if j > 0:
x_1[num] = x_iter[num]
k += 1
x_2[num] = x * (-1) ** k * quad(f_p(num), -math.pi / 2, math.pi / 2, args=(u,))[0]
k += 1
x_3[num] = x * (-1) ** k * quad(f_p(num), -math.pi / 2, math.pi / 2, args=(u,))[0]
denom[num] = (x_3[num] - x_2[num]) - (x_2[num] - x_1[num])
if(abs(denom[num]) < epsilon):
print("Denominator too small. Exiting...\n")
break
AX[num] = x_3[num] - ((x_3[num] - x_2[num]) ** 2) / denom[num]
k += 1
if(abs(AX[num] - x_3[num]) < max_err):
print("Equation " + str(num) + "converges to " + str(AX[num]) + "\n")
break
x_iter[num] = AX[num]
np.zeros(x_1)
np.zeros(x_2)
np.zeros(x_3)
np.zeros(denom)
np.zeros(AX)
if __name__ == '__main__':
mp.set_start_method('spawn')
for u in np.linspace(0.000001, 100, max_count):
p1 = mp.Process(target=f_u, args=(u, 1))
p2 = mp.Process(target=f_u, args=(u, 2))
p3 = mp.Process(target=f_u, args=(u, 3))
p4 = mp.Process(target=f_u, args=(u, 4))
p5 = mp.Process(target=f_u, args=(u, 5))
p6 = mp.Process(target=f_u, args=(u, 6))
p1.start()
p2.start()
p3.start()
p4.start()
p5.start()
p6.start()
p1.join()
p2.join()
p3.join()
p4.join()
p5.join()
p6.join()
exit(0)
最佳答案
这是一个愚蠢的问题,我并没有真正理解 scipy 的 quad
函数是如何工作的,并且不小心将 f_1(num)
放在了我想要该函数的位置与 omega
集成。我也没有将 k
放入参数中,而是在 Aitken 加速后添加而不是从 k
中减去(等于 AX
的部分) .
最后我还有np.zeros(AX)
,这也导致了很多问题。总的来说就是很乱。
它现在可以工作了,我按照一个人的建议删除了多重处理,以便同时绘制这些函数。根本没有看到性能有太大影响,想想吧。
但是,由于某种原因它仍然没有给出正确的答案,而且我知道这不是拉普拉斯方程(f_1
)不正确。我认为这与我迭代向量u
的方式有关...如果有人知道如何对变量进行积分并在args=中拥有另一个变量
部分未集成,请告诉我!
这是现在的示例,供后代使用。最初的方程是为了对多个方程执行此操作而建立的,但我将其减少到 1 以使其相对简短。也尝试使用 gamma 参数——它改变了它的收敛方式,但不是我想要的方式:
import matplotlib.pyplot as plt
from matplotlib import style
import numpy as np
from scipy.integrate import quad, simps
import random
import datetime
from numba import jit
start = datetime.datetime.now() # Record time start
# Initialize variables
gamma = 2 # Bromwich contour parameter
max_count = 1000 # Number of data points in x and y
epsilon = 10 ** -40 # Minimum number to divide by in Aitken's iteration
err = 10 ** -4 # Maximum difference in y to trigger comparison in closing()
max_err = 0.01 # Maximum difference in integrals computed in closing() to end iteration process
result = 0 # Store Aitken's iteration for closing() comparison
previous = 0 # Store iteration before Aitken's for closing() comparison
u, step = np.linspace(0.000005, 10, max_count, retstep=True) # Initializing x values
y = np.empty([4, max_count]) # Initializing y values -- form is y[iteration in Aitken's][x value]
y_denom = np.empty([max_count]) # Initializing array to store Aitken's denominator values
x_iter = np.empty([max_count]) # Initializing array to store Aitken's iteration as starting point for next iteration
# Initialize plot
style.use('fivethirtyeight')
fig = plt.figure()
ax = fig.add_subplot(111)
plt.autoscale(enable=True)
def printer(k): # Prints the iteration and y value at x = 10
print(str(k) + " " + str(y[3][max_count-1]) + "\n")
def plot1(): # Plots estimation 1 (blue) and actual equation 1 (red)
ax.clear()
line1, = ax.plot(u, y[3][:])
ax.plot(u, np.sin(u), 'tab:red')
return line1,
@jit(nopython=True, cache=True)
def f_p1(omega, u, k): # Equation 1, Laplace form
b = (omega + k * np.pi) / u
a = gamma
f1 = a * (1 / (a ** 2 + (b + 1) ** 2) + 1 / (a ** 2 + (b - 1) ** 2)) * np.cos(omega)
return f1
def closing(result, previous, k): # Checks for convergence. If so, adds each term to f_0 and ends process
if abs(result - previous) < max_err:
diff = abs(result - previous)
print("Equation converges to " + str(diff) + " with " + str(k) + " iterations." + "\n")
for i in range(max_count):
y[3][i] += f_0(i)
return 1
else:
print("Equation has not yet converged.\n")
return 0
def f_0(i): # Initial integral in the series. Added at end after closing() convergence test
x_0 = 2 * np.e ** (gamma * u[i]) / (np.pi * u[i]) * quad(
f_p1, 0, np.pi / 2, args=(u[i], 0))[0]
return x_0
def f_u(u): # Main algorithm. Here, the summation integrals iterate
k = 1 # Number of iterations
for i in range(max_count): # First overall series iteration (initial 1st)
y[0][i] = 2 * np.e ** (gamma * u[i]) / (np.pi * u[i]) * (-1) ** k * quad(
f_p1, -np.pi / 2, np.pi / 2, args=(u[i], k))[0]
for j in range(2000): # Iteration loop. Goes until closing() or k = ~2000 (~8000 total iterations)
if j > 0:
for i in range(max_count): # Sets the first iteration (out of 3 for Aitken's) equal to the previous Aitken's or the first iteration if j = 0 (1st)
y[0][i] = x_iter[i]
else:
k += 1
for i in range(max_count): # Second iteration for Aitken's (2nd)
y[1][i] = 2 * np.e ** (gamma * u[i]) / (np.pi * u[i]) * (-1) ** k * quad(
f_p1, -np.pi / 2, np.pi / 2, args=(u[i], k))[0]
k += 1
for i in range(max_count): # Third iteration for Aitken's (3rd)
y[2][i] = 2 * np.e ** (gamma * u[i]) / (np.pi * u[i]) * (-1) ** k * quad(
f_p1, -np.pi / 2, np.pi / 2, args=(u[i], k))[0]
for i in range(max_count): # Aitken's delta-squared method iteration using the previous 3 (4th)
y_denom[i] = (y[2][i] - y[1][i]) - (y[1][i] - y[0][i])
if abs(y_denom[i]) < epsilon:
print("Denominator too small to calculate. Exiting...\n")
return 9
y[3][i] = y[2][i] - ((y[2][i] - y[1][i]) ** 2) / y_denom[i]
k -= 1
printer(k)
plot1()
rand = random.randrange(0, max_count) # Setting random number for x value
# Comparison between y at random x in Aitken's vs the previous iteration. If close enough, triggers closing()
if abs(y[3][rand] - y[2][rand]) < err:
result = simps(y[3][:], u, dx=step) #Integrates Aitken's iteration (4th)
previous = simps(y[2][:], u, dx=step) #Integrates integration before Aitken's (3rd)
c1 = closing(result, previous, k)
if c1 == 1:
return 0
for i in range(max_count): # Setting current Aitken's iteration to first iteration
x_iter[i] = y[3][i]
return
if __name__ == '__main__':
# Run the algorithm and plot
f_u(u)
plot1()
end = datetime.datetime.now() # Record time end
print("Runtime: " + str(end - start))
# Plots final result
plt.show()
exit(0)
关于python - 将 linspace 向量发送到函数会使该向量在函数启动之前全部为零,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59505208/
每当我运行命令以将 Virtualbox 驱动程序启动 Minishift 到操作系统主机时,它都需要一段疯狂的时间,而且它永远不会结束。有时我什至收到有关达到存储限制的错误消息。 不知道是不是描述h
您好,我正在使用 npm 运行一个基本的 React 项目,我正尝试在 docker 容器中启动它。但是我实际上无法让项目运行。我的 dockerfile 看起来像这样: FROM node:7.8.
所以我想从我的 SSH 终端开始游戏。 这真的很奇怪,当我直接从 Linux GUI 执行此操作时,它可以工作。但是当我使用 SSH 客户端进行远程连接时,它就崩溃了。似乎与我的显示驱动程序有关。 U
我有一个显示图像的动态壁纸。我在 Activity 中更改了该图像。然后我需要通知动态壁纸,以便它知道重新加载资源。 Intent 似乎是完美、简单的解决方案: Intent intent = new
我有一个似乎无法解决的问题。我在 Boot Dashboard 中使用 STS 3.9.2 从 Eclipse (Oxygen) 启动 Spring Boot 应用程序没有任何问题: 但是,当我尝试从
全新的 Python,在我开始摆弄东西之前先设置和安装东西。我的理解是 Python 2.7 和 Python 3.3 之间存在一些显着差异/不兼容,尽管这两个版本都得到了很好的使用,所以我认为最好安
在使用了很长时间的 jQuery 之后,我有一个问题,我正在使用 jQuery 模式(样式)编写一个简单的代码, (function(window, undefined) { var jQu
我正在尝试在 spring boot 应用程序下的非 spring 托管类中配置 Autowired。我在 tomcat 服务器下部署的 Web 应用程序下成功运行了这个。但是当我想在 spring
我对 xmonad 完全陌生,但我想开始使用它来提高我的工作效率。 这是我一直在使用的指南(我使用的是 Apple OS X Snow Leopard) http://xmonad.org/tour.
我试图将Spring Boot指南中的Managing Transactions示例扩展到两个数据源,但是@Transaction注释似乎仅对其中一个数据源有效。 在“Application.java
conEmu 有没有办法默认打开多个不同的选项卡? 我看到这个页面解释了如何使用 splits , 我意识到我可以按 Ctrl + T, 1, Enter,但我希望有一种方法可以自动执行此操作! "%
我正在寻找快速而肮脏的答案。我当时脑子一片空白,盯着屏幕看了 12 个小时以上,我想我中枪了。 我想做一个简单的 SignalR 应用程序作为教程。我找到了这个example ,但我不断收到票证未定义
我正在使用 Azure Powershell cmdlet 来启动/停止 VM。 Start-AzureVM [-ServiceName] [-Name] [ ] Stop-AzureVM [-S
我想使用Powershell脚本代码启动/停止iis和mssql 意味着当我运行ps脚本时,我想启动/停止iis和mssql 我在网上搜索了它,发现了一些代码,但按照我的要求无法正常工作 码: $ii
我在 liferay 工作。我们在我们的项目中使用一个模块来创建 liferay 主题。我使用命令 ant -Ddeploy.war=true 将它部署在服务器中。 war 文件在 liferay 部
我想在已安装 Python 2.7 的 Windows XP 计算机上运行 IPython(版本 0.12)。 我通过 Windows 二进制安装程序安装,但安装后 IPython 没有显示在菜单中,
我从创建了自己的简单图片。 FROM python:2.7.11 RUN mkdir /extra/later/ \ && mkdir /yyy 现在,我可以执行以下步骤: docker run
$(document).ready(function () { setTimeout(function() { window.location.reload(); }, 2000); // 2
我刚刚创建了一个帐户 OpenWeatherMap 我想通过城市 ID API 调用获取当前位置的天气: http://api.openweathermap.org/data/2.5/weather?
我注意到,如果我更改 xcasset 中的图像,启动 Storyboard不会更新。 例如,假设您的启动 Storyboard中有一个 UIImage View ,其中包含一个名为“logo”的蓝色图
我是一名优秀的程序员,十分优秀!