0

下面的代码生成一个 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函数的原因是某些行不会被更改。

4

1 回答 1

0

你是对的,为什么它不起作用。为什么不直接使用reduce?或者:DenseVector.vertcat(vs:_*)

Map:Breeze 赋予列向量特权,而行向量缺少很多功能。一般来说,您应该养成使用列而不是行的习惯。

于 2015-03-25T23:19:21.980 回答