기본 콘텐츠로 건너뛰기

12월, 2024의 게시물 표시

벡터와 행렬에 관련된 그림들

벡터와 행렬에 관련된 그림들

다음의 코드들과 그림들은 전자책 파이썬과 함께 하는 선형대수 에 수록된 것입니다. import numpy as np import matplotlib.pyplot as plt import seaborn sns.set_style("darkgrid") #fig 1.1.1 fig, ax=plt.subplots(figsize=(3,2)) cord=[(0,0), (3,1),(2,3)] nme=["O","A","B"] col=['g','b','r'] for i, j in enumerate(cord): ax.scatter(j[0], j[1], color="white", edgecolors=col[i]) ax.text(j[0], j[1]+0.15, nme[i], color=col[i], fontweight="bold") ax.arrow(0,0, 3, 1, color="b", head_width=0.1) ax.arrow(0,0, 2, 3, color="r", head_width=0.1) ax.text(1, 0.5, r"$\vec{a}$", color="b") ax.text(1, 1.8, r"$\vec{b}$",color="r") ax.spines['left'].set_position(("data", 0)) ax.spines['bottom'].set_position(("data", 0)) ax.spines['right'].set_visible(False) ax.spines['top'].set_visible(False) ax.grid(True) plt.show() #fig112 a=np.array([10,15])...