diff --git a/Book4_Ch13_Python_Codes/Bk4_Ch13_03.py b/Book4_Ch13_Python_Codes/Bk4_Ch13_03.py index b9ea075..de735df 100644 --- a/Book4_Ch13_Python_Codes/Bk4_Ch13_03.py +++ b/Book4_Ch13_Python_Codes/Bk4_Ch13_03.py @@ -43,7 +43,7 @@ [5*np.sin(theat_i)]]) plt.plot(x[0],x[1], - marker = 'x',color = colors_j, + marker = 'x',color = colors[j,:], markersize = 15) # plot the initial point @@ -68,3 +68,4 @@ ax.spines['left'].set_visible(False) ax.axvline(x=0,color = 'k') ax.axhline(y=0,color = 'k') +plt.show()