예제 #1
0
 public INumber Add <TOther>(INumber a, TOther b)
 {
     return(CheckNice(UnderlyingHandler.Add(CheckNice(a), b)));
 }
예제 #2
0
 public INumber Add(INumber a, INumber b)
 {
     return(CheckNice(UnderlyingHandler.Add(CheckNice(a), CheckNice(b))));
 }
예제 #3
0
 public INDArray Add(INDArray array, INumber value)
 {
     return(CheckNice(UnderlyingHandler.Add(CheckNice(array), CheckNice(value))));
 }
예제 #4
0
        public INDArray Add(INDArray a, INDArray b)
        {
            CheckEqualLength(a, b, "add ndarrays elementwise");

            return(CheckNice(UnderlyingHandler.Add(CheckNice(a), CheckNice(b))));
        }
예제 #5
0
 public INDArray Add <TOther>(INDArray array, TOther value)
 {
     return(CheckNice(UnderlyingHandler.Add(CheckNice(array), value)));
 }