【Python】Matplotlib绘制百变椭圆
生活随笔
收集整理的這篇文章主要介紹了
【Python】Matplotlib绘制百变椭圆
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Demo
打算繪制兩幅圖:
橢圓繪制
一般的橢圓繪制,可通過matplotlib庫patches模塊的Ellipse實現。
最后打算繪制在一張畫布上。
Matplotlib編程實現
import matplotlib.pyplot as plt import numpy as np from matplotlib.patches import Ellipsefig, ax = plt.subplots(1, 2, subplot_kw={"aspect": "equal"})angles = np.linspace(0, 180, 8)ellipse = [Ellipse((3, 3), 4, 1, a) for a in angles]for elle in ellipse:ax[0].add_patch(elle)elle.set_alpha(0.4)elle.set_color("#FF5511")ax[0].axis([0, 6, 0, 6])num = np.arange(0, 100, 1)ellipse = [Ellipse(xy=np.random.rand(2)*10+1, width=np.random.rand(1), height=np.random.rand(1),angle=np.random.rand(1)*360) for i in num]for elle in ellipse:ax[1].add_patch(elle)elle.set_alpha(np.random.rand(1))elle.set_color(np.random.rand(3))ax[1].axis([0, 12, 0, 12])plt.tight_layout()plt.show()成品圖
總結
以上是生活随笔為你收集整理的【Python】Matplotlib绘制百变椭圆的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【Python】Matplotlib切割
- 下一篇: 【数据结构与算法】循环队列的Java实现