com.phasmidsoftware.number.misc.SumOfSquares.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of number_2.13 Show documentation
Show all versions of number_2.13 Show documentation
Fuzzy, Lazy Scala library for numerical computation
The newest version!
package com.phasmidsoftware.number.misc
import scala.language.postfixOps
/**
* Created by scalaprof on 10/28/16.
*/
object SumOfSquares extends App {
def sumOfSquares(xs: Seq[Double]) = xs map (x => x * x) sum
println(sumOfSquares(Seq(1, 2, 3, 4, 5)))
}