我正在尝试将起点添加到流线图中。我找到了使用起点here的示例代码;在此链接中,讨论了另一个问题,但start_points参数起作用。从here中,我获取了简化的示例代码(images_contours_and_fields示例代码:streamplot_demo_features.py)。我不明白为什么我可以在一个代码中定义起点,而不能在另一个代码中定义起点。当我尝试在示例代码(streamplot_demo_features.py)中定义起点时,出现以下错误:

    Traceback (most recent call last):

  File "<ipython-input-79-981cad64cff6>", line 1, in <module>
    runfile('C:/Users/Admin/.spyder/StreamlineExample.py', wdir='C:/Users/Admin/.spyder')

  File "C:\ProgramData\Anaconda2\lib\site-packages\spyder\utils\site\sitecustomize.py", line 866, in runfile
    execfile(filename, namespace)

  File "C:\ProgramData\Anaconda2\lib\site-packages\spyder\utils\site\sitecustomize.py", line 87, in execfile
    exec(compile(scripttext, filename, 'exec'), glob, loc)

  File "C:/Users/Admin/.spyder/StreamlineExample.py", line 28, in <module>
    ax1.streamplot(X, Y, U, V,start_points=start_points)

  File "C:\ProgramData\Anaconda2\lib\site-packages\matplotlib\__init__.py", line 1891, in inner
    return func(ax, *args, **kwargs)

  File "C:\ProgramData\Anaconda2\lib\site-packages\matplotlib\axes\_axes.py", line 4620, in streamplot
    zorder=zorder)

  File "C:\ProgramData\Anaconda2\lib\site-packages\matplotlib\streamplot.py", line 144, in streamplot
    sp2[:, 0] += np.abs(x[0])

ValueError: non-broadcastable output operand with shape (1,) doesn't match the broadcast shape (100,)


我注意到网络上没有太多使用start_points的方式,因此任何其他信息都将有所帮助。

最佳答案

example that successfully uses start_pointsexample from the matplotlib page之间的主要区别在于,第一个使用1D数组作为xy网格,而官方示例使用2D数组。

由于the documentation明确声明


  xy:一维数组,均匀分布的网格。


我们可能会坚持使用一维数组。目前尚不清楚示例与文档矛盾的原因,但我们可以忽略它。

现在,使用1D数组作为网格,start_points可以按预期工作,因为它采用2列数组(第一列x坐标,第二列y坐标)。

一个完整的例子:

import numpy as np
import matplotlib.pyplot as plt

x,y = np.linspace(-3,3,100),np.linspace(-3,3,100)
X,Y = np.meshgrid(x,y)
U = -1 - X**2 + Y
V = 1 + X - Y**2
speed = np.sqrt(U*U + V*V)

start = [[0,0], [1,2]]

fig0, ax0 = plt.subplots()

strm = ax0.streamplot(x,y, U, V, color=(.75,.90,.93))
strmS = ax0.streamplot(x,y, U, V, start_points=start, color="crimson", linewidth=2)

plt.show()


python - 提供起点的Python Matplotlib Streamplot-LMLPHP

关于python - 提供起点的Python Matplotlib Streamplot,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43928767/

10-11 10:38