Example #1
0
        public NArrayBool LogicalOperation(NArrayBool operand1, NArrayBool operand2, LogicalBinaryElementWiseOperation op)
        {
            var result = NewNArrayLike(operand1) as NArrayBool;

            Provider(operand1, operand2).LogicalOperation(operand1, operand2, result, op);
            return(result);
        }
 public NArrayBool LogicalOperation(NArrayBool operand1, NArrayBool operand2, LogicalBinaryElementWiseOperation op)
 {
     throw new NotImplementedException();
 }
 public NArrayInt this[NArrayBool condition]
 {
     set { ExecutionContext.Executor.Assign(this, () => value, () => condition); }
 }