1560件ヒット
[1501-1560件を表示]
(0.033秒)
ライブラリ
クラス
- BigDecimal (84)
- Bignum (12)
- Complex (168)
-
Enumerator
:: ArithmeticSequence (42) - Fixnum (9)
- Float (48)
- Integer (287)
- Matrix (72)
-
Matrix
:: LUPDecomposition (24) -
Net
:: FTP (24) -
Net
:: HTTP (7) - Numeric (539)
- Object (24)
-
OpenSSL
:: BN (12) - OptionParser (144)
- Rational (28)
- Vector (36)
キーワード
- % (36)
- * (60)
- ** (16)
- + (12)
- +@ (12)
- - (12)
- -@ (12)
-
/ (95) - <=> (12)
- [] (30)
- abs (12)
- abs2 (12)
- angle (24)
- arg (24)
- begin (7)
- ceil (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)
- imag (24)
- imaginary (24)
- infinite? (9)
- integer? (12)
- last (14)
- magnitude (12)
- modulo (36)
- negative? (10)
- nonzero? (12)
- numerator (12)
- on (144)
-
open
_ timeout (12) - phase (24)
- polar (24)
- positive? (10)
- pow (24)
- quo (48)
-
read
_ timeout (12) - real (12)
- real? (24)
- rect (24)
- rectangular (24)
- remainder (39)
- round (24)
- step (93)
- times (24)
-
to
_ i (12) - truncate (36)
- upto (24)
-
write
_ timeout (7) - zero? (12)
検索結果
先頭5件
-
Complex
# real? -> false (19.0) -
常に false を返します。
...常に false を返します。
//emlist[例][ruby]{
(2+3i).real? # => false
(2+0i).real? # => false
//}
@see Numeric#real?... -
Integer
# times -> Enumerator (19.0) -
self 回だけ繰り返します。 self が正の整数でない場合は何もしません。
...れます。
//emlist[][ruby]{
3.times { puts "Hello, World!" } # Hello, World! と3行続いて表示される。
0.times { puts "Hello, World!" } # 何も表示されない。
5.times {|n| print n } # 01234 と表示される。
//}
@see Integer#upto, Integer#downto, Numeric#step... -
Integer
# times {|n| . . . } -> self (19.0) -
self 回だけ繰り返します。 self が正の整数でない場合は何もしません。
...れます。
//emlist[][ruby]{
3.times { puts "Hello, World!" } # Hello, World! と3行続いて表示される。
0.times { puts "Hello, World!" } # 何も表示されない。
5.times {|n| print n } # 01234 と表示される。
//}
@see Integer#upto, Integer#downto, Numeric#step... -
Matrix
# *(m) -> Matrix | Vector (16.0) -
self に行列またはベクトル m を右から乗じた行列を返します。
...を返します。
m が Vector オブジェクトなら返り値も Vector オブジェクトになります。
@param m 右からの乗算が定義可能な行列やベクトルを指定します。
@raise ExceptionForMatrix::ErrDimensionMismatch 次元が合わない場合に発生します... -
Vector
# *(m) -> Matrix (16.0) -
自分自身を列ベクトル(行列)に変換して (実際には Matrix.column_vector(self) を適用) から、行列 m を右から乗じた行列 (Matrix クラス) を返します。
...には Matrix.column_vector(self) を適用) から、行列 m を右から乗じた行列 (Matrix クラス) を返します。
@param m 右から乗算を行う行列
@raise ExceptionForMatrix::ErrDimensionMismatch 次元が合わない場合に発生します
=== 注意
引数の行列 m は...