Wenn Sie keinen Patch verwenden möchten, können Sie die parametrische Gleichung einer Ellipse verwenden: x = u + a.cos (t); y = v + b.sin (t)
import numpy as np
from matplotlib import pyplot as plt
from math import pi
u=1. #x-position of the center
v=0.5 #y-position of the center
a=2. #radius on the x-axis
b=1.5 #radius on the y-axis
t = np.linspace(0, 2*pi, 100)
plt.plot(u+a*np.cos(t) , v+b*np.sin(t))
plt.grid(color='lightgray',linestyle='--')
plt.show()
Welche gibt: Die Ellipse kann dank einer 2D-Rotationsmatrix gedreht werden:
import numpy as np
from matplotlib import pyplot as plt
from math import pi, cos, sin
u=1. #x-position of the center
v=0.5 #y-position of the center
a=2. #radius on the x-axis
b=1.5 #radius on the y-axis
t_rot=pi/4 #rotation angle
t = np.linspace(0, 2*pi, 100)
Ell = np.array([a*np.cos(t) , b*np.sin(t)])
#u,v removed to keep the same center location
R_rot = np.array([[cos(t_rot) , -sin(t_rot)],[sin(t_rot) , cos(t_rot)]])
#2-D rotation matrix
Ell_rot = np.zeros((2,Ell.shape[1]))
for i in range(Ell.shape[1]):
Ell_rot[:,i] = np.dot(R_rot,Ell[:,i])
plt.plot(u+Ell[0,:] , v+Ell[1,:]) #initial ellipse
plt.plot(u+Ell_rot[0,:] , v+Ell_rot[1,:],'darkorange') #rotated ellipse
plt.grid(color='lightgray',linestyle='--')
plt.show()
Returns:
Ich hoffte auf etwas, das näher an den Standard-Plotting-Methoden lag, aber ich werde mich als nächstes damit befassen. Vielen Dank! – casper
Gerade bemerkt, dass Sie etwas in Matplotlib.pyplot gesucht haben. Tut mir leid, habe das nicht bemerkt. Eine Suche in der 'matplotlib.pyplot' API-Dokumentation verrät nichts, daher müssen Sie mit' matplotlib.patches.Ellipse' leben. – Chris
Danke, es scheint, dass ich das tun muss. Ich hätte erwartet, dass pyplot einige grundlegende Funktionen zur Formplotting enthält, aber ich nehme an, dass man nicht alles haben kann! – casper