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

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