Corrected slice notation for OA.

这个提交包含在:
Craig Warren
2016-01-22 19:03:13 +00:00
父节点 09f092c55e
当前提交 96ad288fc8

查看文件

@@ -113,7 +113,7 @@ def construct_OA(optparams):
OA[:, col + (jj - 1) * (s - 1) + kk] = np.mod(OA[:, jj] * kk + OA[:, col], s)
# First row and first columns are unneccessary, only there to match algorithm, and cut down columns to number of parameters to optimise
OA = OA[1::, 1::k]
OA = OA[1:, 1:k + 1]
return OA, N, cols, k, s, t