Python中對矩陣的洗牌操作


【code】

import numpy as np

# 創建隨機交換的索引
permutation = list(np.random.permutation(3))

# 創建矩陣X,Y
X = np.array([[0, 1, 2], [0, 1, 2], [0, 1, 2]])
Y = np.array([[0, 1, 2]])

# 交換順序
shuffled_X = X[:, permutation]
shuffled_Y = Y[:, permutation]

# 輸出
print("permutation:")
print(permutation)

print("X:")
print(X)
print("Y:")
print(Y)

print("shuffled_X:")
print(shuffled_X)
print("shuffled_Y:")
print(shuffled_Y)

【result】

permutation:
[1, 2, 0]
X: [[0
1 2] [0 1 2] [0 1 2]]
Y: [[0
1 2]]
shuffled_X: [[
1 2 0] [1 2 0] [1 2 0]]
shuffled_Y: [[
1 2 0]]

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM