#範例11-3:求點 (3,4,5) 對xz平面鏡射後的像。 import numpy as np T1 = np.array([ [1,0,0], [0,-1,0], [0,0,1] ]) x = np.array([ [3],[4],[5] ]) y = T1 @ x print("對xz平面鏡射後的像\n", y)