public INumber Divide <TOther>(INumber a, TOther b) { return(CheckNice(UnderlyingHandler.Divide(CheckNice(a), b))); }
public INumber Divide(INumber a, INumber b) { return(CheckNice(UnderlyingHandler.Divide(CheckNice(a), CheckNice(b)))); }
public INDArray Divide(INDArray a, INDArray b) { CheckEqualLength(a, b, "divide ndarrays elementwise"); return(CheckNice(UnderlyingHandler.Divide(CheckNice(a), CheckNice(b)))); }
public INDArray Divide(INDArray array, INumber value) { return(CheckNice(UnderlyingHandler.Divide(CheckNice(array), CheckNice(value)))); }
public INDArray Divide <TOther>(INDArray array, TOther value) { return(CheckNice(UnderlyingHandler.Divide(CheckNice(array), value))); }
public INDArray Divide <TOther>(TOther value, INDArray array) { return(CheckNice(UnderlyingHandler.Divide(value, CheckNice(array)))); }