1712件ヒット
[1701-1712件を表示]
(0.014秒)
ライブラリ
クラス
- BigDecimal (84)
- Bignum (12)
- Complex (180)
-
Enumerator
:: ArithmeticSequence (49) - Fixnum (9)
- Float (48)
- Integer (288)
- Matrix (84)
-
Matrix
:: LUPDecomposition (24) -
Net
:: FTP (24) -
Net
:: HTTP (7) - Numeric (611)
- Object (24)
-
OpenSSL
:: BN (12) - OptionParser (144)
- Range (12)
- Rational (28)
- UnboundMethod (12)
- Vector (36)
モジュール
- Kernel (24)
キーワード
- % (36)
- * (60)
- ** (16)
- + (12)
- +@ (12)
- - (12)
- -@ (12)
-
/ (96) - <=> (12)
- [] (30)
- abs (24)
- abs2 (24)
- angle (24)
- arg (24)
- begin (7)
- ceil (24)
-
check
_ signedness (24) - clone (12)
- coerce (36)
- conj (12)
- conjugate (12)
- denominator (12)
- det (24)
- determinant (24)
- div (24)
- divmod (42)
- downto (24)
- dup (12)
- end (7)
- eql? (12)
- fdiv (30)
- finite? (9)
- first (14)
- floor (36)
- i (12)
- imag (24)
- imaginary (24)
- infinite? (9)
- integer? (12)
- last (14)
- magnitude (24)
- modulo (36)
- negative? (10)
- nonzero? (12)
- numerator (12)
- on (144)
-
open
_ timeout (12) - owner (12)
- phase (24)
- polar (24)
- positive? (10)
- pow (24)
- quo (48)
-
read
_ timeout (12) - real (24)
- real? (36)
- rect (24)
- rectangular (24)
- remainder (39)
- round (24)
- size (12)
- step (100)
- times (24)
-
to
_ c (12) -
to
_ i (12) -
to
_ int (12) - truncate (36)
- upto (24)
-
write
_ timeout (7) - zero? (12)
検索結果
-
Vector
# *(m) -> Matrix (2.0) -
自分自身を列ベクトル(行列)に変換して (実際には Matrix.column_vector(self) を適用) から、行列 m を右から乗じた行列 (Matrix クラス) を返します。
自分自身を列ベクトル(行列)に変換して (実際には Matrix.column_vector(self) を適用) から、行列 m を右から乗じた行列 (Matrix クラス) を返します。
@param m 右から乗算を行う行列
@raise ExceptionForMatrix::ErrDimensionMismatch 次元が合わない場合に発生します
=== 注意
引数の行列 m は自分自身を列ベクトルとした場合に乗算が定義できる行列である必要があります。
//emlist[例][ruby]{
require 'matrix'
v = Vector[1, 2]
a = [4,...