制作一个高度和宽度可变的半圆楔形。

huangapple go评论95阅读模式
英文:

Wedge to make half of a circle with variable height and width

问题

以下是您要翻译的代码部分:

  1. 我试图在绘图中matplotlib将半圆放在图中但最终得到一条线因为我的y轴最大值是10,000x轴最大值是5
  2. 我想知道是否可以将wedge函数的宽度设置为2.5高度设置为5,000
  3. def circleplot():
  4. # 准备图形
  5. fig, ax = plt.subplots()
  6. ax.set_xlim(xmin=0, xmax=5)
  7. ax.set_ylim(ymin=0, ymax=10000)
  8. w1 = Wedge((2.5, 5000), 2.5, 0, 180, width=0.1, color='black')
  9. ax.add_patch(w1)
  10. plt.show()
  11. circleplot()
英文:

I'm trying to put half of a circle in a plot (matplotlib) but instead I end up with a line because my y axis max is 10,000 and my x axis max is 5.

I was wondering if it was possible to set the width to 2.5 and the height to 5,000 for the wedge function?

  1. def circleplot():
  2. # preparer le graph
  3. fig, ax = plt.subplots()
  4. ax.set_xlim(xmin=0, xmax=5)
  5. ax.set_ylim(ymin=0, ymax=10000)
  6. w1 = Wedge((2.5, 5000), 2.5, 0, 180, width=0.1, color='black')
  7. ax.add_patch(w1)
  8. plt.show()
  9. circleplot()

答案1

得分: 0

以下是翻译好的代码部分:

  1. import matplotlib.pyplot as plt
  2. import math
  3. def circleplot():
  4. fig, ax = plt.subplots()
  5. ax.set_xlim(xmin=0, xmax=5)
  6. ax.set_ylim(ymin=0, ymax=10000)
  7. ctr = (2.5, 5000)
  8. scl = (2.5, 5000)
  9. xx = []
  10. yy = []
  11. for angle in range(180):
  12. x = ctr[0] + scl[0] * math.cos(angle * math.pi / 180)
  13. y = ctr[1] + scl[1] * math.sin(angle * math.pi / 180)
  14. xx.append(x)
  15. yy.append(y)
  16. xx.append(xx[0])
  17. yy.append(yy[0])
  18. ax.plot(xx, yy)
  19. circleplot()
  20. plt.show()

希望这对您有所帮助。

英文:

Here's what I mean. Just create the points as a circle using normal trigonometry. As long as you apply two different scale for x and y, you can make it look normal. I use 180 points along the half-circle, and it looks pretty smooth. You could probably get by with even fewer than that.

  1. import matplotlib.pyplot as plt
  2. import math
  3. def circleplot():
  4. # preparer le graph
  5. fig, ax = plt.subplots()
  6. ax.set_xlim(xmin=0, xmax=5)
  7. ax.set_ylim(ymin=0, ymax=10000)
  8. ctr = (2.5, 5000)
  9. scl = (2.5, 5000)
  10. xx = []
  11. yy = []
  12. for angle in range(180):
  13. x = ctr[0] + scl[0] * math.cos(angle * math.pi / 180)
  14. y = ctr[1] + scl[1] * math.sin(angle * math.pi / 180)
  15. xx.append(x)
  16. yy.append(y)
  17. xx.append(xx[0])
  18. yy.append(yy[0])
  19. ax.plot(xx,yy)
  20. circleplot()
  21. plt.show()

Output:
制作一个高度和宽度可变的半圆楔形。

huangapple
  • 本文由 发表于 2023年5月15日 01:08:36
  • 转载请务必保留本文链接:https://go.coder-hub.com/76248738.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定