るりまサーチ

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

別のキーワード

  1. numeric step
  2. _builtin numeric
  3. numeric numerator
  4. numeric coerce
  5. numeric zero?

クラス

キーワード

検索結果

<< 1 2 > >>

Matrix#det -> Numeric (213.0)

行列式 (determinant) の値を返します。

...オブジェクトを使用することを検討してください。

@
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#determinant -> Numeric (213.0)

行列式 (determinant) の値を返します。

...オブジェクトを使用することを検討してください。

@
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#det -> Numeric (213.0)

元の行列の行列式の値を返します。 LUP 分解の結果を利用して計算します。

...元の行列の行列式の値を返します。
LUP 分解の結果を利用して計算します。

@
see Matrix#determinant...

Matrix::LUPDecomposition#determinant -> Numeric (213.0)

元の行列の行列式の値を返します。 LUP 分解の結果を利用して計算します。

...元の行列の行列式の値を返します。
LUP 分解の結果を利用して計算します。

@
see Matrix#determinant...

Vector#/(other) -> Vector (27.0)

self の各要素を数 other で割ったベクトルを返します。

...self の各要素を数 other で割ったベクトルを返します。

@
param other self の各要素を割る Numeric オブジェクトを指定します。
@
raise ExceptionForMatrix::ErrOperationNotDefined other が Vector や Matrix
の場合に発生します...

絞り込み条件を変える

Matrix#/(m) -> Matrix (24.0)

self に行列 m の逆行列を右から乗じた行列を返します。

...じた行列を返します。

@
param m 逆行列を右から乗算する行列。可逆行列でselfと乗算可能な行列を指定します。

@
raise ExceptionForMatrix::ErrDimensionMismatch 次元が合わない場合に発生します
@
raise ExceptionForMatrix::ErrNotRegular m が正則で...

Matrix#/(other) -> Matrix (24.0)

self の各成分を数 other で割った行列を返します。

...self の各成分を数 other で割った行列を返します。

@
param other self の各成分を割る Numeric オブジェクトを指定します。...

Matrix#*(other) -> Matrix (23.0)

self の各成分に数 other を掛けた行列を返します。

...self の各成分に数 other を掛けた行列を返します。

@
param other self の各成分に掛ける Numeric オブジェクトを指定します。...

Vector#*(other) -> Vector (23.0)

self の各要素に数 other を乗じたベクトルを返します。

...self の各要素に数 other を乗じたベクトルを返します。

@
param other self の各要素に掛ける Numeric オブジェクトを指定します。

//emlist[例][ruby]{
require 'matrix'
a = [1, 2, 3.5, 100]
v1 = Vector.elements(a)
p v1.*(2) # => Vector[2, 4, 7.0, 200]
p v1.*(-...
<< 1 2 > >>