gpt4 book ai didi

去数组初始化

转载 作者:IT老高 更新时间:2023-10-28 12:59:53 26 4
gpt4 key购买 nike

func identityMat4() [16]float {
return {
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1 }
}

我希望您能从示例中了解我想要做什么。如何在 Go 中执行此操作?

最佳答案

func identityMat4() [16]float64 {
return [...]float64{
1, 0, 0, 0,
0, 1, 0, 0,
0, 0, 1, 0,
0, 0, 0, 1 }
}

( Click to play )

关于去数组初始化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4729736/

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