gpt4 book ai didi

swift - 如何使用 Surge 获取矩阵值

转载 作者:行者123 更新时间:2023-11-28 06:20:16 25 4
gpt4 key购买 nike

我正在使用 Surge 框架进行矩阵运算。
https://github.com/mattt/Surge

我想通过索引访问矩阵的值。我不知道如何使用 Surge 执行此操作。

//create arbitrary matrix, this works fine
var matrix : Matrix<Double> = Matrix<Double>([[4,7], [2,6]])

// I want to get the 4 but this doesn't work..
let rm11 = resultMatrix.subscript(row:1,col:1)

有人知道如何访问我创建的矩阵的值吗?谢谢。

最佳答案

在 Swift 中,名称 subscript 不像一个普通函数(事实上你可以看到它不是用 func 关键字声明的)。相反,带有 subscript 成员的结构/枚举/类可以与方括号语法一起使用。也就是说,您的代码可能应该如下所示:

//create arbitrary matrix
var matrix : Matrix<Double> = Matrix<Double>([[4,7], [2,6]])

// get the 4
let rm11 = resultMatrix[1, 1]

阅读更多关于下标的信息 here .

关于swift - 如何使用 Surge 获取矩阵值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43814415/

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