http://matplotlib.sourceforge.net/examples/api/histogram_path_demo.html你能幫我理解這個有關路徑的matplotlib代碼嗎?
我在看上面的代碼。什麼是代碼的下半部分是指:
# we need a (numrects x numsides x 2) numpy array for the path helper
# function to build a compound path
XY = np.array([[left,left,right,right], [bottom,top,top,bottom]]).T
爲什麼會出現「.T」在結束了嗎?什麼是複合路徑?
# get the Path object
barpath = path.Path.make_compound_path_from_polys(XY)
我不明白路徑對象是什麼,有人可以解釋它或指向我的某種教程嗎?