本文整理汇总了Python中scene.Scene.predict_pdf方法的典型用法代码示例。如果您正苦于以下问题:Python Scene.predict_pdf方法的具体用法?Python Scene.predict_pdf怎么用?Python Scene.predict_pdf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scene.Scene
的用法示例。
在下文中一共展示了Scene.predict_pdf方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: helper
# 需要导入模块: from scene import Scene [as 别名]
# 或者: from scene.Scene import predict_pdf [as 别名]
rho_0 = rho_0.reshape( X_grid.shape )
rho_1 = helper( x_t[1], y_t[1] ) * w_t[1]
rho_1 = rho_1.reshape( X_grid.shape )
fig, ax_arr = plt.subplots( 3,1,figsize=(5,10) )
ax_arr[0].contourf( X_grid, Y_grid, rho_0, 50, cmap='viridis')
ax_arr[0].axis('equal')
ax_arr[0].set_title('t = %f' % t_arr[0] )
ax_arr[2].contourf( X_grid, Y_grid, rho_1, 50, cmap='viridis')
ax_arr[2].axis('equal')
ax_arr[2].set_title('t = %f' % t_arr[1] )
UV = dynamics( np.vstack( [X_grid.flatten(), Y_grid.flatten() ] ) )
U_grid = UV[0].reshape( X_grid.shape)
V_grid = UV[1].reshape( X_grid.shape)
ax_arr[1].quiver( X_grid, Y_grid, U_grid, V_grid , pivot='mid', scale=50.)
ax_arr[1].axis('equal')
fig.suptitle('Advection for a single vector-field')
plt.show()
print "Testing class prediction routine"
T = 10.0
rho_T = learned_scene.predict_pdf( X_grid, Y_grid, T )
fig, ax_arr = plt.subplots( 2,1,figsize=(5,10) )
ax_arr[0].contourf( X_grid, Y_grid, rho_0, 50, cmap='viridis')
ax_arr[0].axis('equal')
ax_arr[1].contourf( X_grid, Y_grid, rho_T , 50, cmap = 'viridis')
ax_arr[1].axis('equal')
plt.show()