You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following Code on Scala outputs return java 11 instance.
I'm using openjdk-11 and sbt 1.8.0.
# Main.scala
import breeze.linalg.{DenseMatrix, DenseVector}
object Main extends App {
val X = DenseMatrix((1.0, 0.0), (1.0, 1.0), (1.0, 2.0), (1.0, 3.0))
val Y = DenseVector(0.0, 1.0)
X * Y
}