Pythonで渦巻をお絵描きしたい
Pythonで渦巻描いてみた
Pythonで渦巻描いてみた
uzumaki.py
import numpy as np
import matplotlib.pyplot as plt
theta = np.arange(0.0, 4 * 2 * np.pi, 0.01)
r = 0.5 * theta
plt.polar(theta, r)
plt.show()
実行結果
Author And Source
この問題について(Pythonで渦巻をお絵描きしたい), 我々は、より多くの情報をここで見つけました https://qiita.com/Fiammetta443/items/5e71189bcaa43dfb34da著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .