我正在尝试使用以下代码确切解决问题:
let Vc = Vector.Create(n*m, (fun k ->
Vc_matrix.[ldIdx.[k], chrgIdx.[k]] ))
我收到以下错误消息:
System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values.
Parameter name: row
at Extreme.Mathematics.LinearAlgebra.LinearOperator`1.GG(Int32 , String )
at Extreme.Mathematics.Matrix`1.get_Item(Int32 row, Int32 column)
ldIdx和chrgIdx的必要矩阵已经到位,所以我有点困惑!还有什么可能是问题?
由于