1092件ヒット
[1001-1092件を表示]
(0.075秒)
クラス
- Complex (60)
- Matrix (48)
- Numeric (36)
-
RDoc
:: Options (12) -
RSS
:: ImageFaviconModel :: ImageFavicon (96) -
RSS
:: ImageItemModel :: ImageItem (168) -
RSS
:: Maker :: ImageBase (120) -
RSS
:: Maker :: RSSBase (12) -
RSS
:: RDF (24) -
RSS
:: RDF :: Channel (24) -
RSS
:: RDF :: Channel :: Image (24) -
RSS
:: RDF :: Channel :: ImageFavicon (96) -
RSS
:: RDF :: Image (120) -
RSS
:: Rss (12) -
RSS
:: Rss :: Channel (24) -
RSS
:: Rss :: Channel :: Image (144)
モジュール
-
CGI
:: HtmlExtension (24) -
RSS
:: ImageFaviconModel (24) -
RSS
:: ImageItemModel (24)
キーワード
- about (48)
- about= (48)
- abs (12)
- abs2 (12)
- date (48)
- date= (48)
- description (24)
- description= (24)
- height (36)
- height= (36)
- image (60)
- image= (36)
-
image
_ favicon (12) -
image
_ favicon= (12) -
image
_ format (12) -
image
_ height (12) -
image
_ height= (12) -
image
_ item (12) -
image
_ item= (12) -
image
_ size (24) -
image
_ size= (24) -
image
_ width (12) -
image
_ width= (12) - imaginary (36)
- link (24)
- link= (24)
- magnitude (12)
- real (12)
- rect (12)
- rectangular (12)
- resource (24)
- resource= (24)
- size (24)
- size= (24)
- title (36)
- title= (36)
- url (36)
- url= (36)
- width (36)
- width= (36)
検索結果
先頭5件
-
RSS
:: Rss :: Channel :: Image # width (3001.0) -
@todo
@todo -
RSS
:: Rss :: Channel :: Image # width= (3001.0) -
@todo
@todo -
Complex
# abs -> Numeric (7.0) -
自身の絶対値を返します。
...自身の絶対値を返します。
以下の計算の結果を Float オブジェクトで返します。
sqrt(self.real ** 2 + self.imag ** 2)
//emlist[例][ruby]{
Complex(1, 2).abs # => 2.23606797749979
Complex(3, 4).abs # => 5.0
Complex('1/2', '1/2').abs # => 0.70710678118... -
Complex
# abs2 -> Numeric (7.0) -
自身の絶対値の 2 乗を返します。
...自身の絶対値の 2 乗を返します。
以下の計算の結果を返します。
self.real ** 2 + self.imag ** 2
//emlist[例][ruby]{
Complex(1, 1).abs2 # => 2
Complex(1.0, 1.0).abs2 # => 2.0
Complex('1/2', '1/2').abs2 # => (1/2)
//}
@see Complex#abs... -
Complex
# magnitude -> Numeric (7.0) -
自身の絶対値を返します。
...自身の絶対値を返します。
以下の計算の結果を Float オブジェクトで返します。
sqrt(self.real ** 2 + self.imag ** 2)
//emlist[例][ruby]{
Complex(1, 2).abs # => 2.23606797749979
Complex(3, 4).abs # => 5.0
Complex('1/2', '1/2').abs # => 0.70710678118... -
Matrix
# rect -> [Matrix , Matrix] (7.0) -
行列を実部と虚部に分解したものを返します。
...行列を実部と虚部に分解したものを返します。
//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}
@see Matrix#imaginary, Matrix#real... -
Matrix
# rectangular -> [Matrix , Matrix] (7.0) -
行列を実部と虚部に分解したものを返します。
...行列を実部と虚部に分解したものを返します。
//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}
@see Matrix#imaginary, Matrix#real... -
Numeric
# real -> Numeric (7.0) -
自身を返します。
...す。
Numeric のサブクラスは、このメソッドを適切に再定義しなければなりません。
//emlist[例][ruby]{
10.real # => 10
-10.real # => -10
0.1.real # => 0.1
Rational(2, 3).real # => (2/3)
//}
@see Numeric#imag、Complex#real...