285件ヒット
[1-100件を表示]
(0.051秒)
ライブラリ
クラス
- Matrix (48)
-
Matrix
:: LUPDecomposition (24) -
OpenSSL
:: PKCS7 (48) - PP (24)
- Socket (12)
-
WIN32OLE
_ METHOD (12) -
WIN32OLE
_ PARAM (12) -
WIN32OLE
_ VARIABLE (12)
モジュール
- Enumerable (48)
-
MiniTest
:: Assertions (1) - Process (12)
-
Socket
:: Constants (12)
キーワード
- DETACHED (12)
- HTTPLoopDetected (8)
-
SO
_ DETACH _ FILTER (24) -
det
_ e (12) - detach (12)
- detached (12)
- detached= (12)
- detached? (12)
- detect (24)
- determinant (24)
-
determinant
_ e (12) -
exception
_ details (1) - find (24)
- nodetype (12)
-
ole
_ type _ detail (24) -
return
_ type _ detail (12) -
sharing
_ detection (12) -
sharing
_ detection= (12)
検索結果
先頭5件
-
Matrix
:: LUPDecomposition # det -> Numeric (27201.0) -
元の行列の行列式の値を返します。 LUP 分解の結果を利用して計算します。
...元の行列の行列式の値を返します。
LUP 分解の結果を利用して計算します。
@see Matrix#determinant... -
Matrix
# det -> Numeric (24213.0) -
行列式 (determinant) の値を返します。
...行列式 (determinant) の値を返します。
Float を使用すると、精度が不足するため、誤った結果が生じる可能性があることに注意してください。
代わりに、Rational や BigDecimal などの正確なオブジェクトを使用することを検討し......てください。
@raise ExceptionForMatrix::ErrDimensionMismatch 正方行列でない場合に発生します
//emlist[例][ruby]{
require 'matrix'
p Matrix[[2, 1], [-1, 2]].det #=> 5
p Matrix[[2.0, 1.0], [-1.0, 2.0]].det #=> 5.0
//}... -
Matrix
:: LUPDecomposition # determinant -> Numeric (15201.0) -
元の行列の行列式の値を返します。 LUP 分解の結果を利用して計算します。
...元の行列の行列式の値を返します。
LUP 分解の結果を利用して計算します。
@see Matrix#determinant... -
static enum node
_ type nodetype(node) (12400.0) -
node の種類を返します。 デバッグ用です。
...node の種類を返します。
デバッグ用です。... -
Matrix
# determinant -> Numeric (12213.0) -
行列式 (determinant) の値を返します。
...行列式 (determinant) の値を返します。
Float を使用すると、精度が不足するため、誤った結果が生じる可能性があることに注意してください。
代わりに、Rational や BigDecimal などの正確なオブジェクトを使用することを検討し......てください。
@raise ExceptionForMatrix::ErrDimensionMismatch 正方行列でない場合に発生します
//emlist[例][ruby]{
require 'matrix'
p Matrix[[2, 1], [-1, 2]].det #=> 5
p Matrix[[2.0, 1.0], [-1.0, 2.0]].det #=> 5.0
//}... -
Matrix
# det _ e -> Rational | Float (12201.0) -
このメソッドは deprecated です。 Matrix#determinant を代わりに使ってください。
...このメソッドは deprecated です。
Matrix#determinant を代わりに使ってください。... -
Matrix
# determinant _ e -> Rational | Float (12201.0) -
このメソッドは deprecated です。 Matrix#determinant を代わりに使ってください。
...このメソッドは deprecated です。
Matrix#determinant を代わりに使ってください。... -
Enumerable
# detect(ifnone = nil) -> Enumerator (12200.0) -
要素に対してブロックを評価した値が真になった最初の要素を返します。
...初の 3 の倍数を探す
p [1, 2, 3, 4, 5].find {|i| i % 3 == 0 } # => 3
p [2, 2, 2, 2, 2].find {|i| i % 3 == 0 } # => nil
# ifnone の使用例
ifnone = proc { raise ArgumentError, "item not found" }
p [1, 2, 3, 4, 5].find(ifnone) {|i| i % 7 == 0 }
# ArgumentError: item not found
//}... -
Enumerable
# detect(ifnone = nil) {|item| . . . } -> object (12200.0) -
要素に対してブロックを評価した値が真になった最初の要素を返します。
...初の 3 の倍数を探す
p [1, 2, 3, 4, 5].find {|i| i % 3 == 0 } # => 3
p [2, 2, 2, 2, 2].find {|i| i % 3 == 0 } # => nil
# ifnone の使用例
ifnone = proc { raise ArgumentError, "item not found" }
p [1, 2, 3, 4, 5].find(ifnone) {|i| i % 7 == 0 }
# ArgumentError: item not found
//}...