메모
전체 예제 코드를 다운로드 하려면 여기 를 클릭 하십시오.
TickedStroke 경로 효과 #
Matplotlib patheffects
는 경로가 거의 모든 것에 영향을 줄 수 있을 만큼 충분히 낮은 수준에서 그려지는 방식을 변경하는 데 사용할 수 있습니다.
경로 효과 가이드 는 경로 효과 사용에 대해 자세히 설명합니다.
여기 TickedStroke
에 표시된 경로 효과는 틱 스타일로 경로를 그립니다. 눈금의 간격, 길이 및 각도를 제어할 수 있습니다.
컨투어 데모 예제 도 참조하십시오 .
최적화 예제 의 등고선도 참조하십시오 .
경로에 TickedStroke 적용 #
import matplotlib.patches as patches
from matplotlib.path import Path
import numpy as np
import matplotlib.pyplot as plt
import matplotlib.patheffects as patheffects
fig, ax = plt.subplots(figsize=(6, 6))
path = Path.unit_circle()
patch = patches.PathPatch(path, facecolor='none', lw=2, path_effects=[
patheffects.withTickedStroke(angle=-90, spacing=10, length=1)])
ax.add_patch(patch)
ax.axis('equal')
ax.set_xlim(-2, 2)
ax.set_ylim(-2, 2)
plt.show()
줄에 TickedStroke 적용 #
fig, ax = plt.subplots(figsize=(6, 6))
ax.plot([0, 1], [0, 1], label="Line",
path_effects=[patheffects.withTickedStroke(spacing=7, angle=135)])
nx = 101
x = np.linspace(0.0, 1.0, nx)
y = 0.3*np.sin(x*8) + 0.4
ax.plot(x, y, label="Curve", path_effects=[patheffects.withTickedStroke()])
ax.legend()
plt.show()
등고선 플롯에 TickedStroke 적용 #
목적 및 제약 조건이 있는 등고선 플롯. 최적화 문제의 일반적인 제약 조건을 나타내기 위해 등고선으로 생성된 곡선은 0도에서 180도 사이의 각도로 그려야 합니다.
fig, ax = plt.subplots(figsize=(6, 6))
nx = 101
ny = 105
# Set up survey vectors
xvec = np.linspace(0.001, 4.0, nx)
yvec = np.linspace(0.001, 4.0, ny)
# Set up survey matrices. Design disk loading and gear ratio.
x1, x2 = np.meshgrid(xvec, yvec)
# Evaluate some stuff to plot
obj = x1**2 + x2**2 - 2*x1 - 2*x2 + 2
g1 = -(3*x1 + x2 - 5.5)
g2 = -(x1 + 2*x2 - 4.5)
g3 = 0.8 + x1**-3 - x2
cntr = ax.contour(x1, x2, obj, [0.01, 0.1, 0.5, 1, 2, 4, 8, 16],
colors='black')
ax.clabel(cntr, fmt="%2.1f", use_clabeltext=True)
cg1 = ax.contour(x1, x2, g1, [0], colors='sandybrown')
plt.setp(cg1.collections,
path_effects=[patheffects.withTickedStroke(angle=135)])
cg2 = ax.contour(x1, x2, g2, [0], colors='orangered')
plt.setp(cg2.collections,
path_effects=[patheffects.withTickedStroke(angle=60, length=2)])
cg3 = ax.contour(x1, x2, g3, [0], colors='mediumblue')
plt.setp(cg3.collections,
path_effects=[patheffects.withTickedStroke(spacing=7)])
ax.set_xlim(0, 4)
ax.set_ylim(0, 4)
plt.show()
스크립트의 총 실행 시간: (0분 1.492초)