216件ヒット
[201-216件を表示]
(0.100秒)
キーワード
- * (24)
- + (24)
- - (24)
- cofactor (12)
-
cofactor
_ expansion (12) -
find
_ index (36) -
first
_ minor (12) - index (36)
-
laplace
_ expansion (12)
検索結果
-
Vector
# -(v) -> Vector | Matrix (3121.0) -
self からベクトル v を減じたベクトルを返します。
...には column_size が 1 の Matrix オブジェクトも指定できます。
その場合は返り値も Matrix オブジェクトになります。
@param v 減算するベクトル。減算可能な行列やベクトルを指定します。
@raise ExceptionForMatrix::ErrDimensionMismatch 自... -
Vector
# *(other) -> Vector (3112.0) -
self の各要素に数 other を乗じたベクトルを返します。
...数 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.5) # => Vector[-1....