gpt4 book ai didi

matrix - 在 Julia 中调整矩阵大小

转载 作者:行者123 更新时间:2023-12-05 01:04:18 30 4
gpt4 key购买 nike

如何转换矩阵A

   A = [a b c 
d e f
g h i]

到矩阵 B?

   B = [a a b b c c
a a b b c c
d d e e f f
d d e e f f
g g h h i i
g g h h i i]

最佳答案

你可以使用重复:

julia> A = ['a' 'b' 'c'
'd' 'e' 'f'
'g' 'h' 'i']
3×3 Matrix{Char}:
'a' 'b' 'c'
'd' 'e' 'f'
'g' 'h' 'i'

julia> repeat(A, inner = (2, 2))
6×6 Matrix{Char}:
'a' 'a' 'b' 'b' 'c' 'c'
'a' 'a' 'b' 'b' 'c' 'c'
'd' 'd' 'e' 'e' 'f' 'f'
'd' 'd' 'e' 'e' 'f' 'f'
'g' 'g' 'h' 'h' 'i' 'i'
'g' 'g' 'h' 'h' 'i' 'i'

关于matrix - 在 Julia 中调整矩阵大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72350370/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com