1
我想知道代碼中的for行應該做什麼。這是一個代碼片段我需要幫助:Python矩陣代碼含義片段
# iterate through rows of X
for i in range(len(X)):
# iterate through columns of Y
for j in range(len(Y[0])):
# iterate through rows of Y
for k in range(len(Y)):
result[i][j] += X[i][k] * Y[k][j]
for r in result:
print(r)
謝謝!我現在知道了。 – Nakash
「但是沒有意義的值」不太準確,「結果」必須是零矩陣 –
@JaredGoguen:是的,你說得對。我認爲我在內部循環之前看到一個賦值爲零,通常情況如此。我會糾正我的答案。謝謝! –