cos!(x) -> Float
実数 x の余弦関数の値を返します。Math.#cos のエイリアスです。
例 require "cmath" CMath.cos!(0 * Math::PI / 4) # => 1.0 CMath.cos!(1 * Math::PI / 4) # => 0.7071067811865476 CMath.cos!(4 * Math::PI / 4) # => -1.0
require "cmath" CMath.cos!(0 * Math::PI / 4) # => 1.0 CMath.cos!(1 * Math::PI / 4) # => 0.7071067811865476 CMath.cos!(4 * Math::PI / 4) # => -1.0
[SEE_ALSO] Math.#cos