バージョン

Find(BooleanMatrix) メソッド

Find は BooleanMatrixx を取り、x が True のインデックスを返します。
シンタックス
'宣言
 
Public Overloads Shared Function Find( _
   ByVal x As BooleanMatrix _
) As Vector
public static Vector Find( 
   BooleanMatrix x
)

パラメータ

x
BooleanMatrix。

戻り値の型

x[i] が x で True の j 回目である y[j] = i、Vector y。
解説
Find は Matrix および ComplexMatrix で比較演算子と共に使用され、BooleanMatrix インスタンスを返します。次の記数法は大変便利です。int length = 1000; Matrix x1 = (Matrix)Compute.Line(0,2,length); Vector x2 = new Vector(length); x2[Compute.Find(x1 > 1)] = 1;
参照