るりまサーチ

最速Rubyリファレンスマニュアル検索!
234件ヒット [1-100件を表示] (0.092秒)

別のキーワード

  1. _builtin rect
  2. matrix rect
  3. complex rect
  4. numeric rect
  5. rect

検索結果

<< 1 2 3 > >>

Numeric#rect -> [Numeric, Numeric] (18138.0)

[self, 0] を返します。

...[self, 0] を返します。

//emlist[例][ruby]{
1.rect # => [1, 0]
-1.rect # => [-1, 0]
1.0.rect # => [1.0, 0]
-1.0.rect # => [-1.0, 0]
//}

Numeric のサブクラスは、このメソッドを適切に再定義しなければなりません。

@
see Complex#rect...

Complex#rect -> [Numeric, Numeric] (18132.0)

実部と虚部を配列にして返します。

...実部と虚部を配列にして返します。

//emlist[例][ruby]{
Complex(3).rect # => [3, 0]
Complex(3.5).rect # => [3.5, 0]
Complex(3, 2).rect # => [3, 2]
//}

@
see Numeric#rect...

Matrix#rect -> [Matrix, Matrix] (18114.0)

行列を実部と虚部に分解したものを返します。

...行列を実部と虚部に分解したものを返します。


//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}

@
see Matrix#imaginary, Matrix#real...

Numeric#rectangular -> [Numeric, Numeric] (6138.0)

[self, 0] を返します。

...[self, 0] を返します。

//emlist[例][ruby]{
1.rect # => [1, 0]
-1.rect # => [-1, 0]
1.0.rect # => [1.0, 0]
-1.0.rect # => [-1.0, 0]
//}

Numeric のサブクラスは、このメソッドを適切に再定義しなければなりません。

@
see Complex#rect...

Complex#rectangular -> [Numeric, Numeric] (6132.0)

実部と虚部を配列にして返します。

...実部と虚部を配列にして返します。

//emlist[例][ruby]{
Complex(3).rect # => [3, 0]
Complex(3.5).rect # => [3.5, 0]
Complex(3, 2).rect # => [3, 2]
//}

@
see Numeric#rect...

絞り込み条件を変える

Matrix#rectangular -> [Matrix, Matrix] (6114.0)

行列を実部と虚部に分解したものを返します。

...行列を実部と虚部に分解したものを返します。


//emlist[例][ruby]{
m.rect == [m.real, m.imag] # ==> true for all matrices m
//}

@
see Matrix#imaginary, Matrix#real...

Psych::Nodes::Document#tag_directives=(tags) (6113.0)

tag directive の配列を設定します。

...tag directive の配列を設定します。

@
param tags 設定する tag directive の配列
@
see Psych::Nodes::Document#tag_directives,
Psych::Nodes::Document.new...

Shell#directory?(file) -> bool (6113.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@
param file ファイル名を表す文字列か IO オブジェクトを指定します。

@
see FileTest.#directory?...

Shell::CommandProcessor#directory?(file) -> bool (6113.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@
param file ファイル名を表す文字列か IO オブジェクトを指定します。

@
see FileTest.#directory?...

Shell::Filter#directory?(file) -> bool (6113.0)

FileTest モジュールにある同名のクラスメソッドと同じです.

...FileTest モジュールにある同名のクラスメソッドと同じです.

@
param file ファイル名を表す文字列か IO オブジェクトを指定します。

@
see FileTest.#directory?...

絞り込み条件を変える

<< 1 2 3 > >>