역삼각함수란 삼각함수의 역함수를 의미하고, 역쌍곡선함수란 쌍곡선함수의 역함수를 의미한다. 수학에서 sin 함수의 역함수는 arcsin 으로 표기되는데, Scala 언어에서는 scala.math.asin(Double) 메소드로 구현되어 있다. /* * Filename: testArcSine.scala * * Execute: scala -deprecation testArcSine.scala * * Or * * Compile: scalac -d. -deprecation testArcSine.scala * Execute: scala -classpath . -deprecation testArcSine * * Date: 2013. 1. 1. * Copyright (c) pkim _AT_ scripts.pe.kr *..