如何在 Python 2 中正确编码矢量化函数条目 [英] How to correctly code vectorized function entries in Python 2

查看:35
本文介绍了如何在 Python 2 中正确编码矢量化函数条目的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我玩了一些我在网上找到的使用 Python 3 处理优化的代码.修改后,它呈现了这样的图

So I had played around some code I found online dealing with optimization using Python 3. Modified, it rendered a plot like this

现在我使用的是 Python 2,并且没有处理 *.我认为问题在于 Python 迭代,但在遵循 这篇文章 中建议的括号技巧时,我没有得到任何结果.完整代码如下:

Now I'm using Python 2, and the * is not being processed. I believe the issue is the Python iteration, but I'm not getting any results when following the parenthesis trick suggested in this post. Here is the entire code:

%matplotlib inline

import matplotlib.pyplot as plt
import pylab as pylab
import autograd.numpy as np

from mpl_toolkits.mplot3d import Axes3D
from matplotlib.colors import LogNorm
from matplotlib import animation
from IPython.display import HTML

from autograd import elementwise_grad, value_and_grad
from scipy.optimize import minimize
from collections import defaultdict
from itertools import izip_longest
from functools import partial

f  = lambda x, y: 10*np.cos(1*x) * 15*np.sin(1/2*y) + 150
xmin, xmax, xstep = -4.5, 4.5, .2
ymin, ymax, ystep = -4.5, 4.5, .2

x, y = np.meshgrid(np.arange(xmin, xmax + xstep, xstep), np.arange(ymin, ymax + ystep, ystep))
z = f(x, y)

minima = np.array([np.pi, np.pi])
minima_ = minima.reshape(-1, 1)

fig = plt.figure(figsize=(8, 5))
ax = plt.axes(projection='3d', elev=50, azim=-50)
ax.plot_surface(x, y, z, norm=LogNorm(), rstride=1, cstride=1, 
                edgecolor='none', alpha=.8, cmap=plt.cm.jet)
ax.plot(*minima_, f(*minima_), 'o', markersize=4, color='w')

ax.set_xlabel('$x$')
ax.set_ylabel('$y$')
ax.set_zlabel('$z$')

ax.set_xlim((xmin, xmax))
ax.set_ylim((ymin, ymax))

plt.show()

和错误信息:

  File "<ipython-input-5-3b03e44c1cac>", line 31
    ax.plot(*minima_, f(*minima_), 'o', markersize=4, color='w')
SyntaxError: only named arguments may follow *expression

推荐答案

考虑通过索引分配两个 minima_ 值.以下在 python 2 和 3 中都兼容:

Consider assigning both minima_ values by index. Below is compliant in both python 2 and 3:

a,b = minima_[0], minima_[1]                        # TO ADD
ax.plot(a,b, f(a,b), 'o', markersize=4, color='w')  # TO REPLACE

这篇关于如何在 Python 2 中正确编码矢量化函数条目的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆