283件ヒット
[101-200件を表示]
(0.023秒)
クラス
- Matrix (235)
-
Matrix
:: LUPDecomposition (12) - Vector (36)
キーワード
- []= (7)
- cofactor (12)
-
cofactor
_ expansion (12) -
column
_ count (12) -
column
_ size (12) -
elements
_ to _ i (24) -
find
_ index (36) - hash (24)
- index (36)
-
laplace
_ expansion (12) - pivots (12)
- rank (12)
-
rank
_ e (12) -
row
_ count (12) -
row
_ size (12) - size (12)
- tr (12)
- trace (12)
検索結果
先頭5件
-
Matrix
# row _ count -> Integer (104.0) -
行列の行数を返します。
行列の行数を返します。 -
Matrix
# row _ size -> Integer (104.0) -
行列の行数を返します。
行列の行数を返します。 -
Matrix
# tr -> Integer | Float | Rational | Complex (104.0) -
トレース (trace) を返します。
...列のトレース (trace) とは、対角要素の和です。
//emlist[例][ruby]{
require 'matrix'
Matrix[[7,6], [3,9]].trace # => 16
//}
trace は正方行列でのみ定義されます。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します... -
Matrix
# trace -> Integer | Float | Rational | Complex (104.0) -
トレース (trace) を返します。
...列のトレース (trace) とは、対角要素の和です。
//emlist[例][ruby]{
require 'matrix'
Matrix[[7,6], [3,9]].trace # => 16
//}
trace は正方行列でのみ定義されます。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します... -
Matrix
# cofactor(row , column) -> Integer | Rational | Float (103.0) -
(row, column)-余因子を返します。
...(row, column)-余因子を返します。
各要素の型によって返り値が変わります。
@param row 行
@param column 列
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方でない場合に発生します。
@see Matrix#adjugate... -
Matrix
# hash -> Integer (103.0) -
行列のHash値を返します。
行列のHash値を返します。 -
Matrix
# rank -> Integer (103.0) -
階数 (rank) を返します。
...め、誤った結果が生じる可能性があることに注意してください。
代わりに、Rational や BigDecimal などの正確なオブジェクトを使用することを検討してください。
//emlist[][ruby]{
require 'matrix'
m = Matrix[[2, 6], [1, 3]]
m.rank # => 1
//}... -
Matrix
# rank _ e -> Integer (103.0) -
階数 (rank) を返します。
...階数 (rank) を返します。
このメソッドは deprecated です。
代わりに Matrix#rank を使ってください。... -
Matrix
:: LUPDecomposition # pivots -> [Integer] (103.0) -
ピボッティングを表す配列を返します。
ピボッティングを表す配列を返します。