下面的代码生成一个 0-1 矩阵,改变每个奇数行并组成一个新矩阵。我想连接向量,foldLeft
但我得到了Not all matrices have the same number of columns
,可能是因为 的零(或单位)元素foldLeft
是一个未知大小的空向量。
import breeze.linalg._
import breeze.stats.distributions._
object ZeroOneMatrix {
def main(args: Array[String]) {
val n = 4
val m = DenseMatrix.rand[Int](n, n, rand = Rand.randInt(2))
println(m)
// vs is of type Vector[DenseVector[Int]]
val vs = for (r <- 0 until n)
yield {
if (r % 2 == 1)
m(r, ::).t map (e => (e + 1) % 2)
else m(r, ::).t
}
println(vs)
// compose matrix back from the list of vectors vs
val f = (vs foldLeft DenseVector[Int]().asDenseMatrix)(
(mat, v) => DenseMatrix.vertcat(v.asDenseMatrix, mat))
println(f)
}
}
怎么可能修好?另外为什么map
不能在m(r, ::)
不进行转接的情况下调用?理想情况下,我会将选择的向量映射到新向量,然后DenseMatrix.horzcat
用于构建矩阵。
不对整个矩阵使用该map
函数的原因是某些行不会被更改。