2
A
答えて
0
質問から波状の矢印を再現するために、あなたは、ラインプロットと三角
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.path as mpath
import matplotlib.patches as mpatches
fig, ax = plt.subplots()
x = np.linspace(0,9*np.pi,151)
y = np.sin(x)
ax.plot(x,y, color="gray", lw="3")
verts = np.array([[0,1],[0,-1],[2,0],[0,1]]).astype(float)*1.3
verts[:,0] += 9*np.pi
path = mpath.Path(verts)
patch = mpatches.PathPatch(path, fc='gray', ec="gray")
ax.add_patch(patch)
ax.axis("off")
ax.set_aspect("equal",'datalim')
ax.relim()
ax.autoscale_view()
plt.show()
を使用することができます
関連する問題
- 1. geom_segment arrow direction
- 2. Arrow UIPegmentedControlのUIPopoverController
- 3. nirav jscrollpane arrow button
- 4. dijit.form.NumberSpinner arrow on IE6
- 5. Javascript onChange arrow keys
- 6. Kivy Bubble arrow blur
- 7. DropDownExtender Clickable Arrow Issue
- 8. Popover arrow styling issues
- 9. CSS for Line Arrow
- 10. mgraph javascript style_dashed arrowスタイル
- 11. ドロップリストメニュー用のCSS arrow
- 12. Css arrow under menu item
- 13. Arrow in jQueryのダイアログ
- 14. Androidツールバーback arrow not clickable
- 15. R arrow/direction plot from Data.frame
- 16. ArrowシンタックスVS ES5関数スコープ
- 17. .NET Winforms draw arrow WYSIWYG at designtime
- 18. es6 arrow機能説明
- 19. arrow演算子とブーストマルチアレイイテレータ
- 20. ESLint eslint-plugin-react arrow functions
- 21. reaction.jsのEslint arrow-body-styleエラー
- 22. arrow関数の構文エラー
- 23. ES6 Fat Arrowと括弧 `(...)=>({...})`
- 24. jQuery-ui-tooltip arrowの位置
- 25. Appアイコンback arrow landscapeとportraitで表示
- 26. 入力タイプarrowスピンボタン非標準
- 27. Spinner Arrow SymbolをTextViewに追加する
- 28. php画像を生成するcurly arrow
- 29. javascript arrowキーの動きをHTMLボタン
- 30. twitter bootstrap popover arrowをカスタマイズする
素晴らしいアイディア - ありがとう! – IanRoberts