gpt4 book ai didi

scala - 如何使用 Scala Breeze 对向量执行逐元素标量运算?

转载 作者:行者123 更新时间:2023-12-03 17:07:36 24 4
gpt4 key购买 nike

使用 Scalala,可以使用标量操作数对 Vector 执行逐元素操作。假设您有一个介于 0 和 1 之间的随机数向量,并且您想从 1 中减去每个值:

import breeze.linalg._

val x = DenseVector.rand(5)
val y = 1d :- x //DOESN'T COMPILE: "value :- is not a member of Double"

与 Scalala 不同,Breeze 无法使用这种方法进行编译。您可以通过生成一个 Vector 来解决这个问题,但似乎应该有更好的方法。
val y = DenseVector.ones[Double](x.size) :- x

另一种解决方法是使用更易读的 mapValues 方法:
val y = x mapValues { 1 - _ }

使用 Breeze 完成此操作的正确方法是什么?

最佳答案

这是一个老问题,有点过时了。目前,微风1.0和斯卡拉 2.11现在支持此语法:

import breeze.linalg._

val x = DenseVector.rand(5)
val y = 1d :- x
输出:
import breeze.linalg._
x: breeze.linalg.DenseVector[Double] = DenseVector(0.8274425487378012, 0.11585689753323769, 0.9691257294006741, 0.15061939654911782, 0.8337942418593918)
warning: there was one deprecation warning; re-run with -deprecation for details
y: breeze.linalg.DenseVector[Double] = DenseVector(0.1725574512621988, 0.8841431024667623, 0.030874270599325904, 0.8493806034508822, 0.16620575814060823)

关于scala - 如何使用 Scala Breeze 对向量执行逐元素标量运算?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13003596/

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