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