るりまサーチ

最速Rubyリファレンスマニュアル検索!
534件ヒット [1-100件を表示] (0.040秒)

別のキーワード

  1. openssl integer
  2. asn1 integer
  3. _builtin integer
  4. integer new
  5. integer chr

検索結果

<< 1 2 3 ... > >>

BigMath.#exp(x, prec) -> BigDecimal (18119.0)

x の指数関数を prec で指定した精度で計算します。

...返します。

@param x 計算対象の数値を Integer、BigDecimal、
Float、Rationalオブジェクトのいずれかで指定します。

@param prec 計算結果の精度を指定します。

@raise ArgumentError x に Integer、BigDecimal、
Float、Rational...
...以外のオブジェクトを指
定した場合に発生します。

@raise ArgumentError prec に 0 以下の数値が指定された場合に発生します。

//emlist[][ruby]{
require "bigdecimal/math"

puts BigMath::exp(BigDecimal('1'), 10) #=> 0.2718281828e1
//}...

Float::MAX_10_EXP -> Integer (6208.0)

最大の 10 進の指数です。

...最大の 10 進の指数です。

通常はデフォルトで 308 です。

@see Float::MIN_10_EXP...

Float::MAX_EXP -> Integer (6208.0)

最大の Float::RADIX 進の指数です。

...最大の Float::RADIX 進の指数です。

通常はデフォルトで 1024 です。

@see Float::MIN_EXP...

Float::MIN_10_EXP -> Integer (6208.0)

最小の 10 進の指数です。

...最小の 10 進の指数です。

通常はデフォルトで -307 です。

@see Float::MAX_10_EXP...

Float::MIN_EXP -> Integer (6208.0)

最小の Float::RADIX 進の指数です。

...最小の Float::RADIX 進の指数です。

通常はデフォルトで -1021 です。

@see Float::MAX_EXP...

絞り込み条件を変える

Matrix#cofactor_expansion(row: nil, column: nil) -> object | Integer | Rational | Float (6202.0)

row 行、もしくは column 列に関するラプラス展開をする。

...やベクトルである場合には

//emlist[例][ruby]{
require 'matrix'
# Matrix[[7,6], [3,9]].laplace_expansion(column: 1) # => 45
Matrix[[Vector[1, 0], Vector[0, 1]], [2, 3]].laplace_expansion(row: 0) # => Vector[3, -2]
//}

@param row 行
@param column 列
@raise ArgumentError row と column...

Matrix#laplace_expansion(row: nil, column: nil) -> object | Integer | Rational | Float (6202.0)

row 行、もしくは column 列に関するラプラス展開をする。

...やベクトルである場合には

//emlist[例][ruby]{
require 'matrix'
# Matrix[[7,6], [3,9]].laplace_expansion(column: 1) # => 45
Matrix[[Vector[1, 0], Vector[0, 1]], [2, 3]].laplace_expansion(row: 0) # => Vector[3, -2]
//}

@param row 行
@param column 列
@raise ArgumentError row と column...

BigDecimal#exponent -> Integer (6201.0)

self の指数部を整数値で返します。

self の指数部を整数値で返します。

Etc::Passwd#expire -> Integer (6201.0)

アカウント有効期限(整数)を返します。このメンバはシステム依存です。

アカウント有効期限(整数)を返します。このメンバはシステム依存です。
<< 1 2 3 ... > >>