るりまサーチ (Ruby 2.1.0)

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.009秒)
トップページ > バージョン:2.1.0[x] > クエリ:TypeError[x] > クエリ:erf[x] > 種類:モジュール関数[x]

別のキーワード

  1. _builtin typeerror
  2. sort typeerror
  3. dump typeerror
  4. $@ typeerror
  5. $~ typeerror

ライブラリ

モジュール

検索結果

Math.#erf(x) -> Float (54343.0)

x の誤差関数(error function)の値を返します。

x の誤差関数(error function)の値を返します。

@param x 実数

@raise TypeError x に数値以外を指定した場合に発生します。

@raise RangeError x に実数以外の数値を指定した場合に発生します。

//emlist[例][ruby]{
Math.erf(0) # => 0.0
//}

@see Math.#erfc

Math.#erfc(x) -> Float (18340.0)

x の相補誤差関数(complementary error function)の値を返します。

x の相補誤差関数(complementary error function)の値を返します。

@param x 実数

@raise TypeError x に数値以外を指定した場合に発生します。

@raise RangeError x に実数以外の数値を指定した場合に発生します。

//emlist[例][ruby]{
Math.erfc(0) # => 1.0
//}

@see Math.#erf