るりまサーチ (Ruby 2.4.0)

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

別のキーワード

  1. _builtin at
  2. _builtin values_at
  3. time at
  4. dbm values_at
  5. csv values_at

検索結果

Matrix#imag -> Matrix (63607.0)

行列の虚部を返します。

行列の虚部を返します。

//emlist[例][ruby]{
require 'matrix'
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
# => 1+2i i 0
# 1 2 3
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].imaginary
# => 2i i 0
# 0 0 0
//}

RDoc::Options#image_format -> String (36604.0)

コマンドライン引数の --image-format オプションで指定した名前を文字列の 配列で返します。

コマンドライン引数の --image-format オプションで指定した名前を文字列の
配列で返します。

指定しなかった場合は 'png' を返します。

RSS::ImageFaviconModel::ImageFavicon#date (36304.0)

@todo

@todo

RSS::ImageFaviconModel::ImageFavicon#date= (36304.0)

@todo

@todo

RSS::ImageItemModel::ImageItem#date (36304.0)

@todo

@todo

絞り込み条件を変える

RSS::ImageItemModel::ImageItem#date= (36304.0)

@todo

@todo

Matrix#imaginary -> Matrix (27607.0)

行列の虚部を返します。

行列の虚部を返します。

//emlist[例][ruby]{
require 'matrix'
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]]
# => 1+2i i 0
# 1 2 3
Matrix[[Complex(1,2), Complex(0,1), 0], [1, 2, 3]].imaginary
# => 2i i 0
# 0 0 0
//}

RSS::RDF::Channel::ImageFavicon#date (27304.0)

@todo

@todo

RSS::RDF::Channel::ImageFavicon#date= (27304.0)

@todo

@todo

RSS::RDF::Image#date (27304.0)

@todo

@todo

絞り込み条件を変える

RSS::RDF::Image#date= (27304.0)

@todo

@todo

CGI::HtmlExtension#image_button(attributes) -> String (18604.0)

タイプが image の input 要素を生成します。

タイプが image の input 要素を生成します。

@param attributes 属性をハッシュで指定します。

例:
image_button({ "SRC" => "url", "ALT" => "string" })
# <INPUT TYPE="image" SRC="url" ALT="string">

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

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

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


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

@see Matrix#imaginary, Matrix#real

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

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

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


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

@see Matrix#imaginary, Matrix#real