Mol(Math Object Library) fot .Net
配列内容を Decreasing の指定に従ってソートする代わりに、ソート済みのインデックス配列 Index を返します。ソート対象の配列は変更されません。
※密なベクトル以外の配列をソートする場合は「配列」の意味を理解したうえで実行してください。

名前空間: Mol
アッセンブリー: Mol.Net (in Mol.Net.dll)

構文

C#
public void Sort(
	VectorDenseInt Index,
	bool Decreasing
)
Visual Basic
Public Sub Sort ( 
	Index As VectorDenseInt,
	Decreasing As Boolean
)
Visual C++
public:
void Sort(
	VectorDenseInt^ Index, 
	bool Decreasing
)
member Sort : 
        Index : VectorDenseInt * 
        Decreasing : bool -> unit 

Parameters

Index
タイプ: Mol..::..VectorDenseInt
ソート結果(配列へのインデックス)を格納する配列。結果は Index に格納されるので、ソート対象の配列は変化しません。ただし、Index==null の場合は配列内容がソートされます。
Decreasing
タイプ: System..::..Boolean
true なら昇順、false なら降順にソートします。

参照