Beispiel #1
0
        protected static ILArray <int> find(ILLogical Logical)
        {
            ILArray <int> idx = ILMath.empty <int>();

            idx  = ILMath.find(Logical);
            idx += 1;
            return(idx);
        }
Beispiel #2
0
        public void Test()
        {
            ILArray <double> A = rand(10, 20);
            ILArray <double> B = A * 30 + 100;
            ILLogical        C = any(multiply(B, B.T));

            Console.Out.Write(-B);
            Console.ReadKey();
        }
Beispiel #3
0
 protected static ILLogical all(ILLogical ilLogical)
 {
     return(ILMath.all(ilLogical));
 }
Beispiel #4
0
 public void CreateArray()
 {
     ILArray <double> A = rand(10, 20);
     ILArray <double> B = A * 30 + 100;
     ILLogical        C = any(multiply(B, B.T));
 }