ライブラリ
- ビルトイン (33)
-
bigdecimal
/ newton (12) - matrix (60)
-
rdoc
/ context (96) -
rdoc
/ normal _ class (12) -
rdoc
/ normal _ module (12) -
rdoc
/ parser / ruby (12) -
rdoc
/ text (12) -
rdoc
/ top _ level (60) -
rexml
/ document (60) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ specification (24) - socket (24)
- uri (24)
クラス
-
Gem
:: RemoteFetcher (12) -
Gem
:: Specification (24) - Matrix (12)
-
RDoc
:: Context (96) -
RDoc
:: Parser :: Ruby (12) -
RDoc
:: TopLevel (60) -
REXML
:: Attribute (12) -
REXML
:: Entity (24) -
REXML
:: Text (24) - Socket (12)
- String (33)
-
URI
:: Generic (24) - Vector (48)
モジュール
- Newton (12)
-
RDoc
:: Text (12) -
Socket
:: Constants (12)
キーワード
- NORMAL (12)
- NormalClass (12)
- NormalModule (12)
-
SOPRI
_ NORMAL (24) -
add
_ class (12) -
add
_ class _ or _ module (24) -
add
_ module (12) -
all
_ classes _ and _ modules (12) - classes (12)
-
each
_ classmodule (12) -
find
_ class _ named (12) -
find
_ enclosing _ module _ named (12) -
find
_ local _ symbol (12) -
find
_ module _ named (24) - magnitude (12)
- modules (12)
- normal? (12)
- normalize (48)
- normalize! (12)
-
normalize
_ comment (12) -
normalize
_ uri (12) -
normalize
_ yaml _ input (12) - normalized (12)
- normalized= (12)
- r (12)
-
rdoc
/ normal _ class (12) -
rdoc
/ normal _ module (12) -
unicode
_ normalize (11) -
unicode
_ normalize! (11) -
unicode
_ normalized? (11) - unnormalize (12)
- unnormalized (12)
検索結果
先頭5件
-
Newton
. # norm(fv , zero = 0 . 0) -> Float (18101.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
Vector
# norm -> Float (15113.0) -
ベクトルの大きさ(ノルム)を返します。
...ベクトルの大きさ(ノルム)を返します。
//emlist[例][ruby]{
require 'matrix'
Vector[3, 4].norm # => 5.0
Vector[Complex(0, 1), 0].norm # => 1.0
//}
@see Vector#normalize... -
Vector
# normalize -> Vector (6128.0) -
自身を Vector#norm で正規化したベクトルを返します。
...Vector#norm で正規化したベクトルを返します。
@raise Vector::ZeroVectorError ベクトルが0である場合に発生します。
//emlist[例][ruby]{
require 'matrix'
v = Vector[2, 6, 9].normalize
# => Vector[0.18181818181818182, 0.5454545454545454, 0.8181818181818182]
v.norm # =>......1.0
//}
@see Vector#norm... -
Gem
:: RemoteFetcher # normalize _ uri(uri) -> String (6100.0) -
URI のスキーム部分が欠けている場合に "http://" を補って返します。
URI のスキーム部分が欠けている場合に "http://" を補って返します。
@param uri URI 文字列を指定します。 -
Gem
:: Specification # normalize -> [String] (6100.0) -
この Gem パッケージの含まれるファイルリストから重複を取り除きます。
この Gem パッケージの含まれるファイルリストから重複を取り除きます。 -
Gem
:: Specification . normalize _ yaml _ input(input) -> String (6100.0) -
YAML 形式の gemspec を正しくフォーマットします。
YAML 形式の gemspec を正しくフォーマットします。
@param input 文字列か IO オブジェクトを指定します。 -
Matrix
# normal? -> bool (6100.0) -
行列が正規行列ならば true を返します。
行列が正規行列ならば true を返します。
@raise ExceptionForMatrix::ErrDimensionMismatch 行列が正方行列でない場合に発生します -
RDoc
:: Parser :: Ruby :: NORMAL -> " :: " (6100.0) -
RDoc::NormalClass type
...RDoc::NormalClass type... -
RDoc
:: Text # normalize _ comment(text) -> String (6100.0) -
引数から行頭のスペースや改行文字などを削除します。
引数から行頭のスペースや改行文字などを削除します。
詳しくは [SEE ALSO] の各メソッドを参照してください。
@param text 文字列を指定します。
@see RDoc::Text#strip_hashes, RDoc::Text#expand_tabs,
RDoc::Text#flush_left, RDoc::Text#strip_newlines