バージョン

Find(BooleanVector) メソッド

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

パラメータ

x
BooleanVector。

戻り値の型

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